summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2012-10-18 08:06:28 +0000
committerChandler Carruth <chandlerc@gmail.com>2012-10-18 08:06:28 +0000
commit49441816aa9a4c7bb27a41c880e56f01d9fd85d6 (patch)
tree835af580a83f6865bad479c8e8afc4aee0b9a92b
parent079ed92654d44e30c620788a6acf70188f2272af (diff)
downloadcompiler-rt-49441816aa9a4c7bb27a41c880e56f01d9fd85d6.tar.gz
Re-enable this test now that r166172 has hacked around the terrible
limitations of the pass manager stack in the pass manager builder. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@166173 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/asan/lit_tests/force_inline_opt0.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/asan/lit_tests/force_inline_opt0.cc b/lib/asan/lit_tests/force_inline_opt0.cc
index b9eeabcc6..955ce3815 100644
--- a/lib/asan/lit_tests/force_inline_opt0.cc
+++ b/lib/asan/lit_tests/force_inline_opt0.cc
@@ -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;