diff options
author | Francois Pichet <pichet2000@gmail.com> | 2011-05-01 04:32:34 +0000 |
---|---|---|
committer | Francois Pichet <pichet2000@gmail.com> | 2011-05-01 04:32:34 +0000 |
commit | af538d9ee6ff71e4beb950943b5e22d0a4eefed1 (patch) | |
tree | 765175b7d2e15ce7d06c56292a4dabede12fb593 | |
parent | 95215a76cdaa338f1d2744bf2520236d105e044d (diff) | |
download | bcm5719-llvm-af538d9ee6ff71e4beb950943b5e22d0a4eefed1.tar.gz bcm5719-llvm-af538d9ee6ff71e4beb950943b5e22d0a4eefed1.zip |
Add a triple to this test, otherwise it fails under MSVC because wchar_t is unsigned with the i686-pc-win32 triple.
llvm-svn: 130636
-rw-r--r-- | clang/test/SemaCXX/type-traits.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/SemaCXX/type-traits.cpp b/clang/test/SemaCXX/type-traits.cpp index a4ed500a804..96e9696a041 100644 --- a/clang/test/SemaCXX/type-traits.cpp +++ b/clang/test/SemaCXX/type-traits.cpp @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -fsyntax-only -verify %s +// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fsyntax-only -verify %s #define T(b) (b) ? 1 : -1 #define F(b) (b) ? -1 : 1 |