diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2011-05-02 19:39:53 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2011-05-02 19:39:53 +0000 |
commit | 01af97d3b23bded2b2b21af19bbc6e4cce49e5b3 (patch) | |
tree | 64a10f4c4154739d4a8191d7e1b52ce497f4ebd6 /test/CodeGen/debug-info-line2.c | |
parent | c3b054d250cdca485c71845089c316e10610ebad (diff) |
Diffstat (limited to 'test/CodeGen/debug-info-line2.c')
-rw-r--r-- | test/CodeGen/debug-info-line2.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/CodeGen/debug-info-line2.c b/test/CodeGen/debug-info-line2.c new file mode 100644 index 0000000000000..b5eba8a1a060c --- /dev/null +++ b/test/CodeGen/debug-info-line2.c @@ -0,0 +1,17 @@ +// RUN: %clang_cc1 -triple x86_64-darwin-apple -g -emit-llvm -o - %s | FileCheck %s +// Radar 9199234 + +int bar(); +int foo(int i) { + int j = 0; + if (i) { + j = bar(); +//CHECK: store i32 +//CHECK-NOT: br label %{{%[a-zA-Z0-9\.]+}}, !dbg + } + else + { + j = bar() + 2; + } + return j; +} |