| OLD | NEW |
| 1 set(LLVM_LINK_COMPONENTS | 1 set(LLVM_LINK_COMPONENTS |
| 2 Analysis | 2 Analysis |
| 3 BitWriter | 3 BitWriter |
| 4 CodeGen | 4 CodeGen |
| 5 Core | 5 Core |
| 6 IPA | 6 IPA |
| 7 IPO | 7 IPO |
| 8 IRReader | 8 IRReader |
| 9 InstCombine | 9 InstCombine |
| 10 Instrumentation | 10 Instrumentation |
| 11 Linker | 11 Linker |
| 12 # @LOCALMOD-BEGIN |
| 13 MinSFITransforms |
| 14 NaClAnalysis |
| 15 NaClBitReader |
| 16 NaClTransforms |
| 17 # @LOCALMOD-END |
| 12 ObjCARCOpts | 18 ObjCARCOpts |
| 13 ScalarOpts | 19 ScalarOpts |
| 14 Support | 20 Support |
| 15 Target | 21 Target |
| 16 TransformUtils | 22 TransformUtils |
| 17 Vectorize | 23 Vectorize |
| 18 ) | 24 ) |
| 19 | 25 |
| 20 # Support plugins. | 26 # Support plugins. |
| 21 set(LLVM_NO_DEAD_STRIP 1) | 27 set(LLVM_NO_DEAD_STRIP 1) |
| (...skipping 12 matching lines...) Expand all Loading... |
| 34 set_target_properties(bugpoint PROPERTIES ENABLE_EXPORTS 1) | 40 set_target_properties(bugpoint PROPERTIES ENABLE_EXPORTS 1) |
| 35 | 41 |
| 36 if(WITH_POLLY AND LINK_POLLY_INTO_TOOLS) | 42 if(WITH_POLLY AND LINK_POLLY_INTO_TOOLS) |
| 37 target_link_libraries(bugpoint Polly) | 43 target_link_libraries(bugpoint Polly) |
| 38 if(POLLY_LINK_LIBS) | 44 if(POLLY_LINK_LIBS) |
| 39 foreach(lib ${POLLY_LINK_LIBS}) | 45 foreach(lib ${POLLY_LINK_LIBS}) |
| 40 target_link_libraries(bugpoint ${lib}) | 46 target_link_libraries(bugpoint ${lib}) |
| 41 endforeach(lib) | 47 endforeach(lib) |
| 42 endif(POLLY_LINK_LIBS) | 48 endif(POLLY_LINK_LIBS) |
| 43 endif(WITH_POLLY AND LINK_POLLY_INTO_TOOLS) | 49 endif(WITH_POLLY AND LINK_POLLY_INTO_TOOLS) |
| OLD | NEW |