From: Richard Smith Date: Mon, 7 Oct 2013 22:58:25 +0000 (+0000) Subject: Add a triple to unbreak buildbots where size_t is not 'unsigned long'. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c50ffca69af980af021384e087a81ae2ff7b9e26;p=clang Add a triple to unbreak buildbots where size_t is not 'unsigned long'. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@192140 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CXX/lex/lex.literal/lex.ext/p5.cpp b/test/CXX/lex/lex.literal/lex.ext/p5.cpp index ff7c3b345c..d364a37c6c 100644 --- a/test/CXX/lex/lex.literal/lex.ext/p5.cpp +++ b/test/CXX/lex/lex.literal/lex.ext/p5.cpp @@ -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)); diff --git a/test/CXX/lex/lex.literal/lex.ext/p7.cpp b/test/CXX/lex/lex.literal/lex.ext/p7.cpp index 15321eb939..be97f0cb92 100644 --- a/test/CXX/lex/lex.literal/lex.ext/p7.cpp +++ b/test/CXX/lex/lex.literal/lex.ext/p7.cpp @@ -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 {