diff options
author | Manman Ren <manman.ren@gmail.com> | 2013-10-01 23:46:19 +0000 |
---|---|---|
committer | Manman Ren <manman.ren@gmail.com> | 2013-10-01 23:46:19 +0000 |
commit | 8a35855cb109072dddfe1b81ea88e89a0fc59626 (patch) | |
tree | 0883a899f3b789c7f8ad02fd7501367959403d63 /clang/test/CodeGenCXX/debug-info-template-limit.cpp | |
parent | 9a0a67035e72e65386e00e0532d491de77987e49 (diff) | |
download | bcm5719-llvm-8a35855cb109072dddfe1b81ea88e89a0fc59626.tar.gz bcm5719-llvm-8a35855cb109072dddfe1b81ea88e89a0fc59626.zip |
Debug Info: update testing cases when the derived-from field of a
DW_TAG_pointer_type is updated to use DITypeRef.
Paired commit with r191800.
llvm-svn: 191801
Diffstat (limited to 'clang/test/CodeGenCXX/debug-info-template-limit.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/debug-info-template-limit.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGenCXX/debug-info-template-limit.cpp b/clang/test/CodeGenCXX/debug-info-template-limit.cpp index 9ddd936bf8a..c3e241ecc80 100644 --- a/clang/test/CodeGenCXX/debug-info-template-limit.cpp +++ b/clang/test/CodeGenCXX/debug-info-template-limit.cpp @@ -1,8 +1,8 @@ // RUN: %clang -flimit-debug-info -emit-llvm -g -S %s -o - | FileCheck %s // Check that this pointer type is TC<int> -// CHECK: ![[LINE:[0-9]+]] = {{.*}}"TC<int>" -// CHECK: ![[LINE]]} ; [ DW_TAG_pointer_type ]{{.*}}[from TC<int>] +// CHECK: ![[LINE:[0-9]+]] = {{.*}}"TC<int>", {{.*}} metadata !"_ZTS2TCIiE"} ; [ DW_TAG_class_type ] +// CHECK: metadata !"_ZTS2TCIiE"} ; [ DW_TAG_pointer_type ]{{.*}}[from _ZTS2TCIiE] template<typename T> class TC { |