diff options
author | Richard Trieu <rtrieu@google.com> | 2012-06-13 23:15:33 +0000 |
---|---|---|
committer | Richard Trieu <rtrieu@google.com> | 2012-06-13 23:15:33 +0000 |
commit | 5767093dce4f97048c861a5024e64e5f0a352a15 (patch) | |
tree | 85febe3cfb54e0e3266dba19d6246b196761f058 /clang/test/Misc/ast-dump-wchar.cpp | |
parent | bc4b4ba5de57ed665b09e18f588d0eefe9ec3267 (diff) | |
download | bcm5719-llvm-5767093dce4f97048c861a5024e64e5f0a352a15.tar.gz bcm5719-llvm-5767093dce4f97048c861a5024e64e5f0a352a15.zip |
Add triples to keep make test work on Windows, where wchar_t is only 16
bits wide.
llvm-svn: 158425
Diffstat (limited to 'clang/test/Misc/ast-dump-wchar.cpp')
-rw-r--r-- | clang/test/Misc/ast-dump-wchar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Misc/ast-dump-wchar.cpp b/clang/test/Misc/ast-dump-wchar.cpp index 2b955d2aff5..87d962fec87 100644 --- a/clang/test/Misc/ast-dump-wchar.cpp +++ b/clang/test/Misc/ast-dump-wchar.cpp @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -std=c++11 -ast-dump %s | FileCheck %s +// RUN: %clang_cc1 -std=c++11 -ast-dump %s -triple x86_64-linux-gnu | FileCheck %s char c8[] = u8"test\0\\\"\t\a\b\234"; // CHECK: char c8[12] = (StringLiteral {{.*}} lvalue u8"test\000\\\"\t\a\b\234") |