r192140 - Add a triple to unbreak buildbots where size_t is not 'unsigned long'.

Richard Smith richard-llvm at metafoo.co.uk
Mon Oct 7 15:58:25 PDT 2013


Author: rsmith
Date: Mon Oct  7 17:58:25 2013
New Revision: 192140

URL: http://llvm.org/viewvc/llvm-project?rev=192140&view=rev
Log:
Add a triple to unbreak buildbots where size_t is not 'unsigned long'.

Modified:
    cfe/trunk/test/CXX/lex/lex.literal/lex.ext/p5.cpp
    cfe/trunk/test/CXX/lex/lex.literal/lex.ext/p7.cpp

Modified: cfe/trunk/test/CXX/lex/lex.literal/lex.ext/p5.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CXX/lex/lex.literal/lex.ext/p5.cpp?rev=192140&r1=192139&r2=192140&view=diff
==============================================================================
--- cfe/trunk/test/CXX/lex/lex.literal/lex.ext/p5.cpp (original)
+++ cfe/trunk/test/CXX/lex/lex.literal/lex.ext/p5.cpp Mon Oct  7 17:58:25 2013
@@ -1,4 +1,4 @@
-// RUN: %clang_cc1 -fsyntax-only -std=c++11 -verify %s
+// RUN: %clang_cc1 -fsyntax-only -std=c++11 -verify %s -triple=x86_64-linux-gnu
 
 using size_t = decltype(sizeof(int));
 

Modified: cfe/trunk/test/CXX/lex/lex.literal/lex.ext/p7.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CXX/lex/lex.literal/lex.ext/p7.cpp?rev=192140&r1=192139&r2=192140&view=diff
==============================================================================
--- cfe/trunk/test/CXX/lex/lex.literal/lex.ext/p7.cpp (original)
+++ cfe/trunk/test/CXX/lex/lex.literal/lex.ext/p7.cpp Mon Oct  7 17:58:25 2013
@@ -1,4 +1,4 @@
-// RUN: %clang_cc1 -fsyntax-only -std=c++11 -verify %s
+// RUN: %clang_cc1 -fsyntax-only -std=c++11 -verify %s -triple=x86_64-linux-gnu
 
 using size_t = decltype(sizeof(int));
 namespace std {





More information about the cfe-commits mailing list