diff options
author | Manman Ren <manman.ren@gmail.com> | 2013-08-29 20:48:48 +0000 |
---|---|---|
committer | Manman Ren <manman.ren@gmail.com> | 2013-08-29 20:48:48 +0000 |
commit | f801f808ba8a5933c8321c6f7295312b394c664b (patch) | |
tree | eb0002ef358113aeef2881ce47cc7b12a27e66dd /clang/test/CodeGenCXX/debug-info-uuid.cpp | |
parent | 825d2084da02f9f6aa976d9d8acd8eb5a9b95ab2 (diff) | |
download | bcm5719-llvm-f801f808ba8a5933c8321c6f7295312b394c664b.tar.gz bcm5719-llvm-f801f808ba8a5933c8321c6f7295312b394c664b.zip |
Debug Info: this reverts commit r189600.
We had further discussions on how to retain types, whether to do it in front end
or in DIBuilder. And we agree to do it in DIBuilder so front ends
generating unique identifier do not need to worry about retaining them.
llvm-svn: 189609
Diffstat (limited to 'clang/test/CodeGenCXX/debug-info-uuid.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/debug-info-uuid.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/clang/test/CodeGenCXX/debug-info-uuid.cpp b/clang/test/CodeGenCXX/debug-info-uuid.cpp index 2f9e6bfc00c..8b6c0aac7fd 100644 --- a/clang/test/CodeGenCXX/debug-info-uuid.cpp +++ b/clang/test/CodeGenCXX/debug-info-uuid.cpp @@ -1,5 +1,5 @@ // RUN: %clang_cc1 -emit-llvm -fms-extensions -triple=x86_64-pc-win32 -cxx-abi microsoft -g %s -o - -std=c++11 | FileCheck %s -// RUN: not %clang_cc1 -emit-llvm -fms-extensions -triple=x86_64-unknown-unknown -g %s -std=c++11 2>&1 | FileCheck %s --check-prefix=CHECK-ITANIUM +// RUN: %clang_cc1 -emit-llvm -fms-extensions -triple=x86_64-unknown-unknown -g %s -o - -std=c++11 | FileCheck %s // CHECK: metadata [[TGIARGS:![0-9]*]], null} ; [ DW_TAG_structure_type ] [tmpl_guid<&__uuidof(uuid)>] // CHECK: [[TGIARGS]] = metadata !{metadata [[TGIARG1:![0-9]*]]} @@ -8,8 +8,6 @@ // CHECK: [[CONST_GUID]] = {{.*}}, metadata [[GUID:![0-9]*]]} ; [ DW_TAG_const_type ] [line 0, size 0, align 0, offset 0] [from _GUID] // CHECK: [[GUID]] = {{.*}} ; [ DW_TAG_structure_type ] [_GUID] -// CHECK-ITANIUM: error: cannot yet mangle expression type CXXUuidofExpr - struct _GUID; template <const _GUID *> struct tmpl_guid { |