Changeset 177315 in webkit for trunk/Source/JavaScriptCore/ftl/FTLCompile.cpp
- Timestamp:
- Dec 15, 2014, 2:58:17 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ftl/FTLCompile.cpp
r177222 r177315 99 99 #elif OS(LINUX) 100 100 if (!strcmp(sectionName, SECTION_NAME("eh_frame"))) { 101 #else 102 #error "Unrecognized OS" 101 103 #endif 102 104 state.unwindDataSection = section->base(); … … 626 628 627 629 if (isARM64()) 630 #if OS(DARWIN) 628 631 llvm->SetTarget(state.module, "arm64-apple-ios"); 629 632 #elif OS(LINUX) 633 llvm->SetTarget(state.module, "aarch64-linux-gnu"); 634 #else 635 #error "Unrecognized OS" 636 #endif 637 630 638 if (llvm->CreateMCJITCompilerForModule(&engine, state.module, &options, sizeof(options), &error)) { 631 639 dataLog("FATAL: Could not create LLVM execution engine: ", error, "\n");
Note:
See TracChangeset
for help on using the changeset viewer.