diff options
Diffstat (limited to 'test/CodeGenObjC/debug-info-getter-name.m')
-rw-r--r-- | test/CodeGenObjC/debug-info-getter-name.m | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/test/CodeGenObjC/debug-info-getter-name.m b/test/CodeGenObjC/debug-info-getter-name.m index 0263f112aeb45..746fcee182984 100644 --- a/test/CodeGenObjC/debug-info-getter-name.m +++ b/test/CodeGenObjC/debug-info-getter-name.m @@ -1,5 +1,10 @@ -// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-nonfragile-abi -S -g %s -o %t -// RUN: grep "\[InstanceVariablesEverywhereButTheInterface someString\]" %t | count 6 +// RUN: %clang_cc1 -fno-dwarf2-cfi-asm -triple x86_64-apple-darwin10 -fobjc-nonfragile-abi -S -g %s -o - | FileCheck %s + +//CHECK: "-[InstanceVariablesEverywhereButTheInterface someString]": +//CHECK: .quad "-[InstanceVariablesEverywhereButTheInterface someString]" +//CHECK: .ascii "-[InstanceVariablesEverywhereButTheInterface someString]" +//CHECK: .asciz "-[InstanceVariablesEverywhereButTheInterface someString]" +//CHECK: "-[InstanceVariablesEverywhereButTheInterface someString].eh": //rdar: //8498026 |