diff options
Diffstat (limited to 'llvm/test')
-rw-r--r-- | llvm/test/DebugInfo/Generic/2010-04-19-FramePtr.ll | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/llvm/test/DebugInfo/Generic/2010-04-19-FramePtr.ll b/llvm/test/DebugInfo/Generic/2010-04-19-FramePtr.ll index 2860db6252c..11c3d689cab 100644 --- a/llvm/test/DebugInfo/Generic/2010-04-19-FramePtr.ll +++ b/llvm/test/DebugInfo/Generic/2010-04-19-FramePtr.ll @@ -1,7 +1,9 @@ -; RUN: %llc_dwarf -asm-verbose -O1 -o %t < %s -; RUN: grep DW_AT_APPLE_omit_frame_ptr %t -; RUN: %llc_dwarf -disable-fp-elim -asm-verbose -O1 -o %t < %s -; RUN: grep -v DW_AT_APPLE_omit_frame_ptr %t +; RUN: %llc_dwarf -debugger-tune=lldb -asm-verbose -O1 -o - < %s | FileCheck %s +; RUN: %llc_dwarf -debugger-tune=gdb -asm-verbose -O1 -o - < %s | FileCheck %s --check-prefix=DISABLE +; RUN: %llc_dwarf -disable-fp-elim -debugger-tune=lldb -asm-verbose -O1 -o - < %s | FileCheck %s --check-prefix=DISABLE + +; CHECK: DW_AT_APPLE_omit_frame_ptr +; DISABLE-NOT: DW_AT_APPLE_omit_frame_ptr define i32 @foo() nounwind ssp !dbg !1 { |