mirror of
https://github.com/intel/llvm.git
synced 2026-01-19 09:31:59 +08:00
Update testcases for LLVM change in r231082 to use the new debug info hierarchy. llvm-svn: 231083
6 lines
135 B
C++
6 lines
135 B
C++
// RUN: %clang_cc1 -emit-llvm -g %s -o -| FileCheck %s
|
|
void foo() {
|
|
// CHECK: !MDBasicType(name: "wchar_t"
|
|
const wchar_t w = L'x';
|
|
}
|