diff options
author | dim <dim@FreeBSD.org> | 2015-05-27 18:47:56 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2015-05-27 18:47:56 +0000 |
commit | 3191b2b32a96e1a6ee833fcca73e5c8e0c67ba65 (patch) | |
tree | dbbd4047878da71c1a706e26ce05b4e7791b14cc /test/CodeGen/debug-info-line.c | |
parent | 38d6f2e7f2ce51a5b3836d26596c6c34a3288752 (diff) | |
download | FreeBSD-src-3191b2b32a96e1a6ee833fcca73e5c8e0c67ba65.zip FreeBSD-src-3191b2b32a96e1a6ee833fcca73e5c8e0c67ba65.tar.gz |
Vendor import of clang trunk r238337:
https://llvm.org/svn/llvm-project/cfe/trunk@238337
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, |