diff options
author | Eric Christopher <echristo@apple.com> | 2012-04-23 19:00:24 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2012-04-23 19:00:24 +0000 |
commit | 87380aaf4273b2259fa75790f2f544c4514cc763 (patch) | |
tree | 98e5e51fb48c17ffcd10f88a67c3eedeb112c9f1 /test/CodeGen/debug-line-1.c | |
parent | aed9ea398a3fd8d488120728e2df4ac81c3b0c4b (diff) |
Forward declarations should take a context. This helps the debugger
find forward declarations in the context that the actual definition
will occur.
rdar://11291658
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@155381 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/debug-line-1.c')
-rw-r--r-- | test/CodeGen/debug-line-1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/debug-line-1.c b/test/CodeGen/debug-line-1.c index 00d4f421f8..0c2d185832 100644 --- a/test/CodeGen/debug-line-1.c +++ b/test/CodeGen/debug-line-1.c @@ -4,7 +4,7 @@ // Check to make sure that we emit the block for the break so that we can count the line. // CHECK: sw.bb: ; preds = %entry -// CHECK: br label %sw.epilog, !dbg !21 +// CHECK: br label %sw.epilog, !dbg !19 extern int atoi(const char *); |