diff options
Diffstat (limited to 'test/CodeGen/debug-info-line.c')
-rw-r--r-- | test/CodeGen/debug-info-line.c | 26 |
1 files changed, 8 insertions, 18 deletions
diff --git a/test/CodeGen/debug-info-line.c b/test/CodeGen/debug-info-line.c index 8f869d0..bc0d23a 100644 --- a/test/CodeGen/debug-info-line.c +++ b/test/CodeGen/debug-info-line.c @@ -1,21 +1,11 @@ -// RUN: %clang -emit-llvm -S -g %s -o - | FileCheck %s +// RUN: %clang_cc1 -w -gline-tables-only -fexceptions -fcxx-exceptions -S -emit-llvm %s -o - | FileCheck %s -// Radar 8396182 -// There are no lexical blocks, but we need two DILexicalBlockFiles to -// correctly represent file info. - -int foo() { - int i = 1; -# 4 "m.c" -# 1 "m.h" 1 - int j = 2; -# 2 "m.h" -# 5 "m.c" 2 - return i + j; +int f1(int a, int b) { + // CHECK: icmp {{.*}}, !dbg [[DBG_F1:!.*]] +#line 100 + return a // + && // + b; } -// CHECK: DW_TAG_lexical_block -// CHECK: !"m.h" -// CHECK: DW_TAG_lexical_block -// CHECK: !"m.c" -// CHECK-NOT: DW_TAG_lexical_block +// CHECK: [[DBG_F1]] = !DILocation(line: 100, |