diff options
author | Douglas Gregor <dgregor@apple.com> | 2012-01-29 23:24:52 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2012-01-29 23:24:52 +0000 |
commit | 8277797e3dbaab79b3835cff8236e602e5229a3b (patch) | |
tree | 6837fc108c914e85566eb817f636f8a18ba61155 | |
parent | 815273125436b49a3feb83eee8324fb82ae0ff18 (diff) | |
download | bcm5719-llvm-8277797e3dbaab79b3835cff8236e602e5229a3b.tar.gz bcm5719-llvm-8277797e3dbaab79b3835cff8236e602e5229a3b.zip |
Try to get useful diagnostics out of the failing MSVC builders
llvm-svn: 149212
-rw-r--r-- | clang/test/Modules/compiler_builtins.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Modules/compiler_builtins.m b/clang/test/Modules/compiler_builtins.m index 52db15c24a0..5874722c6b8 100644 --- a/clang/test/Modules/compiler_builtins.m +++ b/clang/test/Modules/compiler_builtins.m @@ -1,5 +1,5 @@ // RUN: rm -rf %t -// RUN: %clang -fsyntax-only -fmodules -fmodule-cache-path %t -Xclang -verify %s +// RUN: %clang -fsyntax-only -fmodules -fmodule-cache-path %t %s @import __compiler_builtins.float_constants; @@ -9,4 +9,4 @@ float getFltMax() { return FLT_MAX; } char getCharMax() { return CHAR_MAX; } -size_t size; // expected-error{{unknown type name 'size_t'}} +//size_t size; // expected-error{{unknown type name 'size_t'}} |