diff options
Diffstat (limited to 'clang/test/CodeGenCXX/debug-info-wchar.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/debug-info-wchar.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/test/CodeGenCXX/debug-info-wchar.cpp b/clang/test/CodeGenCXX/debug-info-wchar.cpp new file mode 100644 index 0000000..6f53849 --- /dev/null +++ b/clang/test/CodeGenCXX/debug-info-wchar.cpp @@ -0,0 +1,5 @@ +// RUN: %clang_cc1 -emit-llvm -g %s -o -| FileCheck %s +void foo() { +// CHECK: metadata !"wchar_t", + const wchar_t w = L'x'; +} |