r195005 - clang/test/CXX/drs/dr2xx.cpp: Suppress this for targeting LLP64 due to __SIZE_TYPE__.

NAKAMURA Takumi geek4civic at gmail.com
Mon Nov 18 04:58:38 PST 2013


Author: chapuni
Date: Mon Nov 18 06:58:38 2013
New Revision: 195005

URL: http://llvm.org/viewvc/llvm-project?rev=195005&view=rev
Log:
clang/test/CXX/drs/dr2xx.cpp: Suppress this for targeting LLP64 due to __SIZE_TYPE__.

  Line 559: 'long long' is a C++11 extension
  Line 566: 'long long' is a C++11 extension
  Line 674: 'long long' is a C++11 extension

See also PR13819.

Modified:
    cfe/trunk/test/CXX/drs/dr2xx.cpp

Modified: cfe/trunk/test/CXX/drs/dr2xx.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CXX/drs/dr2xx.cpp?rev=195005&r1=195004&r2=195005&view=diff
==============================================================================
--- cfe/trunk/test/CXX/drs/dr2xx.cpp (original)
+++ cfe/trunk/test/CXX/drs/dr2xx.cpp Mon Nov 18 06:58:38 2013
@@ -2,6 +2,9 @@
 // RUN: %clang_cc1 -std=c++11 %s -verify -fexceptions -fcxx-exceptions -pedantic-errors
 // RUN: %clang_cc1 -std=c++1y %s -verify -fexceptions -fcxx-exceptions -pedantic-errors
 
+// PR13819 -- __SIZE_TYPE__ is incompatible.
+// REQUIRES: LP64
+
 #if __cplusplus < 201103L
 #define fold(x) (__builtin_constant_p(x) ? (x) : (x))
 #else





More information about the cfe-commits mailing list