[mips][mips64r6] ssnop is deprecated on MIPS32r6/MIPS64r6
[oota-llvm.git] / tools / bugpoint-passes / CMakeLists.txt
1 if( NOT LLVM_BUILD_TOOLS )
2   set(EXCLUDE_FROM_ALL ON)
3 endif()
4
5 # If we don't need RTTI or EH, there's no reason to export anything
6 # from this plugin.
7 if( NOT LLVM_REQUIRES_RTTI )
8   if( NOT LLVM_REQUIRES_EH )
9     set(LLVM_EXPORTED_SYMBOL_FILE ${CMAKE_CURRENT_SOURCE_DIR}/bugpoint.exports)
10   endif()
11 endif()
12
13 add_llvm_loadable_module( BugpointPasses
14   TestPasses.cpp
15   )
16
17 add_dependencies(BugpointPasses bugpoint)