summaryrefslogtreecommitdiff
path: root/test/CodeGenCXX/debug-info-wchar.cpp
diff options
context:
space:
mode:
authorDuncan P. N. Exon Smith <dexonsmith@apple.com>2014-12-15 19:10:08 +0000
committerDuncan P. N. Exon Smith <dexonsmith@apple.com>2014-12-15 19:10:08 +0000
commitd72d442691bf2cecedfe8281128e28362e3b79d7 (patch)
tree84919e24ccd1d650e855baa5cd38fbcbd8bbac5c /test/CodeGenCXX/debug-info-wchar.cpp
parenteefcef89c739e1831406f5e2115c5235aae42470 (diff)
downloadclang-d72d442691bf2cecedfe8281128e28362e3b79d7.tar.gz
IR: Make metadata typeless in assembly, clang side
Match LLVM changes from r224257. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@224259 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenCXX/debug-info-wchar.cpp')
-rw-r--r--test/CodeGenCXX/debug-info-wchar.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGenCXX/debug-info-wchar.cpp b/test/CodeGenCXX/debug-info-wchar.cpp
index dff3b3c23c..5b5fdccce1 100644
--- a/test/CodeGenCXX/debug-info-wchar.cpp
+++ b/test/CodeGenCXX/debug-info-wchar.cpp
@@ -1,5 +1,5 @@
// RUN: %clang_cc1 -emit-llvm -g %s -o -| FileCheck %s
void foo() {
-// CHECK: metadata !{metadata !"0x24\00wchar_t\00{{.*}}", null, null} ; [ DW_TAG_base_type ] [wchar_t]
+// CHECK: !"0x24\00wchar_t\00{{.*}}", null, null} ; [ DW_TAG_base_type ] [wchar_t]
const wchar_t w = L'x';
}