[llvm-commits] [compiler-rt] r167890 - /compiler-rt/trunk/lib/ubsan/CMakeLists.txt
Richard Smith
richard-llvm at metafoo.co.uk
Tue Nov 13 15:58:20 PST 2012
Author: rsmith
Date: Tue Nov 13 17:58:20 2012
New Revision: 167890
URL: http://llvm.org/viewvc/llvm-project?rev=167890&view=rev
Log:
Fix typo from code review (thanks to Alexey Samsonov). This is also caught by the existing tests when building for i386.
Modified:
compiler-rt/trunk/lib/ubsan/CMakeLists.txt
Modified: compiler-rt/trunk/lib/ubsan/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/ubsan/CMakeLists.txt?rev=167890&r1=167889&r2=167890&view=diff
==============================================================================
--- compiler-rt/trunk/lib/ubsan/CMakeLists.txt (original)
+++ compiler-rt/trunk/lib/ubsan/CMakeLists.txt Tue Nov 13 17:58:20 2012
@@ -28,7 +28,7 @@
if(CAN_TARGET_I386)
add_library(clang_rt.ubsan-i386 STATIC
${UBSAN_SOURCES}
- $<TARGET_OBJECTS:RTSanitizerCommon.x86_64>
+ $<TARGET_OBJECTS:RTSanitizerCommon.i386>
)
set_target_compile_flags(clang_rt.ubsan-i386
${UBSAN_CFLAGS} ${TARGET_I386_CFLAGS}
More information about the llvm-commits
mailing list