diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-02-24 02:35:30 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-02-24 02:35:30 +0000 |
commit | 123374a4e21a05824aaf8535c5a59987818a18e5 (patch) | |
tree | 1b23bafb8563e60c19119dddc0aa335b2e32e9f1 /test/FrontendC++/2006-11-30-Pubnames.cpp | |
parent | 6d696a955c654ba2822787411c372532e90fddb2 (diff) | |
download | external_llvm-123374a4e21a05824aaf8535c5a59987818a18e5.zip external_llvm-123374a4e21a05824aaf8535c5a59987818a18e5.tar.gz external_llvm-123374a4e21a05824aaf8535c5a59987818a18e5.tar.bz2 |
- Use the "Fast" flag instead of "OptimizeForSize" to determine whether to emit
a DBG_LABEL or not. We want to fall back to the original way of emitting debug
info when we're in -O0/-fast mode.
- Add plumbing in to pass the "Fast" flag to places that need it.
- XFAIL DebugInfo/deaddebuglabel.ll. This is finding 11 labels instead of 8. I
need to investigate still.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65367 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendC++/2006-11-30-Pubnames.cpp')
-rw-r--r-- | test/FrontendC++/2006-11-30-Pubnames.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/FrontendC++/2006-11-30-Pubnames.cpp b/test/FrontendC++/2006-11-30-Pubnames.cpp index 8af99e3..b53d6aa 100644 --- a/test/FrontendC++/2006-11-30-Pubnames.cpp +++ b/test/FrontendC++/2006-11-30-Pubnames.cpp @@ -1,7 +1,7 @@ // This is a regression test on debug info to make sure that we can access // qualified global names. // RUN: %llvmgcc -S -O0 -g %s -o - | llvm-as | \ -// RUN: llc --disable-fp-elim -o %t.s -f +// RUN: llc --disable-fp-elim -o %t.s -f -fast // RUN: %compile_c %t.s -o %t.o // RUN: %link %t.o -o %t.exe // RUN: %llvmdsymutil %t.exe |