diff options
Diffstat (limited to 'test/MC/MachO/eh_symbol.s')
-rw-r--r-- | test/MC/MachO/eh_symbol.s | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/MC/MachO/eh_symbol.s b/test/MC/MachO/eh_symbol.s new file mode 100644 index 000000000000..738e2b67d0de --- /dev/null +++ b/test/MC/MachO/eh_symbol.s @@ -0,0 +1,14 @@ +// RUN: llvm-mc -triple i386-apple-darwin9 %s -filetype=obj -o - | llvm-nm - | FileCheck %s + +// test that we don't produce foo.eh symbols in a debug_frame section. +// CHECK-NOT: _f.eh +// CHECK: T _f +// CHECK-NOT: _f.eh + + .globl _f +_f: + .cfi_startproc + retl + .cfi_endproc + + .cfi_sections .debug_frame |