]> granicus.if.org Git - clang/commitdiff
Avoid test failure on platforms where size_t is long long (and thus can't be
authorRichard Smith <richard-llvm@metafoo.co.uk>
Tue, 2 Sep 2014 21:39:21 +0000 (21:39 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Tue, 2 Sep 2014 21:39:21 +0000 (21:39 +0000)
directly written in strictly-conforming source code).

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@216969 91177308-0d34-0410-b5e6-96231b3b80d8

test/CXX/drs/dr5xx.cpp

index ac6c9df808bedf3e3a0d8cacc69c6afae546b405..d7c8fa42830b102599e8314f08125d0a0f9c9b11 100644 (file)
@@ -5,7 +5,8 @@
 // FIXME: This is included to avoid a diagnostic with no source location
 // pointing at the implicit operator new. We can't match such a diagnostic
 // with -verify.
-void *operator new(__SIZE_TYPE__); // expected-warning 0-1{{missing exception spec}} expected-note{{candidate}}
+__extension__ typedef __SIZE_TYPE__ size_t;
+void *operator new(size_t); // expected-warning 0-1{{missing exception spec}} expected-note{{candidate}}
 
 namespace dr500 { // dr500: dup 372
   class D;
@@ -564,7 +565,7 @@ namespace dr552 { // dr552: yes
 }
 
 struct dr553_class {
-  friend void *operator new(__SIZE_TYPE__, dr553_class);
+  friend void *operator new(size_t, dr553_class);
 };
 namespace dr553 {
   dr553_class c;
@@ -574,7 +575,7 @@ namespace dr553 {
   void *p = new (c) int; // expected-error {{no matching function}}
 
   struct namespace_scope {
-    friend void *operator new(__SIZE_TYPE__, namespace_scope); // expected-error {{cannot be declared inside a namespace}}
+    friend void *operator new(size_t, namespace_scope); // expected-error {{cannot be declared inside a namespace}}
   };
 }