Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions lib/JIT.php
Original file line number Diff line number Diff line change
Expand Up @@ -457,11 +457,8 @@ private function isLiteralIncludeDiscoveryRealLoweringMethod(string $lower): boo
/** ConstStringFolder methods with safe LLVM 9 lowering during self-host AOT (#816). */
private function isConstStringFolderRealLoweringMethod(string $lower): bool
{
return str_ends_with($lower, '::literalstringvalue')
|| str_ends_with($lower, '::sourcedir')
|| str_ends_with($lower, '::fold')
|| str_ends_with($lower, '::funccallhasarity')
|| str_ends_with($lower, '::foldcallargstring');
// ConstStringFolder real lowering hits ICmp type mismatches in full self-host probe (#1097).
return false;
}

private function collectStubFunctionArgTypes(Block $block): array
Expand Down
Loading