diff options
author | David Blaikie <dblaikie@gmail.com> | 2013-03-27 00:08:24 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2013-03-27 00:08:24 +0000 |
commit | 2398f30115df07bbd155609088c2666be3ac9019 (patch) | |
tree | 86383612e7ad06b5e875891e10640a4d3f6caa9c /clang/test/CodeGenCXX/debug-info-namespace.cpp | |
parent | a26d70358f36c7a9996a7397d93a9f481486624a (diff) | |
download | bcm5719-llvm-2398f30115df07bbd155609088c2666be3ac9019.tar.gz bcm5719-llvm-2398f30115df07bbd155609088c2666be3ac9019.zip |
Update debug info test for schema change made to LLVM.
This accounts for the addition of another field to DIScopes that will be used
to store a list of DIImportedModules in the future.
llvm-svn: 178100
Diffstat (limited to 'clang/test/CodeGenCXX/debug-info-namespace.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/debug-info-namespace.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/CodeGenCXX/debug-info-namespace.cpp b/clang/test/CodeGenCXX/debug-info-namespace.cpp index 262e996d44d..ccc8e94bcc2 100644 --- a/clang/test/CodeGenCXX/debug-info-namespace.cpp +++ b/clang/test/CodeGenCXX/debug-info-namespace.cpp @@ -9,9 +9,9 @@ int i; // CHECK: [[FILE:![0-9]*]] {{.*}}debug-info-namespace.cpp" // CHECK: [[VAR:![0-9]*]] = {{.*}}, metadata [[NS:![0-9]*]], metadata !"i", {{.*}} ; [ DW_TAG_variable ] [i] -// CHECK: [[NS]] = {{.*}}, metadata [[FILE2:![0-9]*]], metadata [[CTXT:![0-9]*]], {{.*}} ; [ DW_TAG_namespace ] [B] [line 1] -// CHECK: [[CTXT]] = {{.*}}, metadata [[FILE]], null, {{.*}} ; [ DW_TAG_namespace ] [A] [line 3] -// CHECK: [[FILE2]]} ; [ DW_TAG_file_type ] [{{.*}}foo.cpp] +// CHECK: [[NS]] = {{.*}}, metadata [[FILE2:![0-9]*]], null, metadata [[CTXT:![0-9]*]], {{.*}} ; [ DW_TAG_namespace ] [B] [line 1] +// CHECK: [[CTXT]] = {{.*}}, metadata [[FILE]], null, null, {{.*}} ; [ DW_TAG_namespace ] [A] [line 3] +// CHECK: {i32 {{[0-9]+}}, metadata [[FILE2]]{{.*}} ; [ DW_TAG_file_type ] [{{.*}}foo.cpp] // FIXME: It is confused on win32 to generate file entry when dosish filename is given. // REQUIRES: shell |