[llvm-commits] [compiler-rt] r166173 - /compiler-rt/trunk/lib/asan/lit_tests/force_inline_opt0.cc

Chandler Carruth chandlerc at gmail.com
Thu Oct 18 01:06:28 PDT 2012


Author: chandlerc
Date: Thu Oct 18 03:06:28 2012
New Revision: 166173

URL: http://llvm.org/viewvc/llvm-project?rev=166173&view=rev
Log:
Re-enable this test now that r166172 has hacked around the terrible
limitations of the pass manager stack in the pass manager builder.

Modified:
    compiler-rt/trunk/lib/asan/lit_tests/force_inline_opt0.cc

Modified: compiler-rt/trunk/lib/asan/lit_tests/force_inline_opt0.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/lit_tests/force_inline_opt0.cc?rev=166173&r1=166172&r2=166173&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/lit_tests/force_inline_opt0.cc (original)
+++ compiler-rt/trunk/lib/asan/lit_tests/force_inline_opt0.cc Thu Oct 18 03:06:28 2012
@@ -1,7 +1,7 @@
 // This test checks that we are no instrumenting a memory access twice
 // (before and after inlining)
 // RUN: %clangxx_asan -m64 -O1 %s -o %t && %t
-// FIXME (enable this line): %clangxx_asan -m64 -O0 %s -o %t && %t
+// RUN: %clangxx_asan -m64 -O0 %s -o %t && %t
 __attribute__((always_inline))
 void foo(int *x) {
   *x = 0;





More information about the llvm-commits mailing list