]> granicus.if.org Git - clang/commitdiff
Fix test on platforms where size_t != unsigned long.
authorEli Friedman <eli.friedman@gmail.com>
Wed, 18 Feb 2009 00:52:29 +0000 (00:52 +0000)
committerEli Friedman <eli.friedman@gmail.com>
Wed, 18 Feb 2009 00:52:29 +0000 (00:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64867 91177308-0d34-0410-b5e6-96231b3b80d8

test/Sema/implicit-builtin-decl.c

index 4c28d8cf3eb55aaae90ea3aa9e77ead6f4c48cbb..e1f24e35f3b209e6e540252213133e900a2ac3df 100644 (file)
@@ -36,6 +36,6 @@ int f0() {
 }
 
 void * realloc(void *p, int size) { // expected-warning{{incompatible redeclaration of library function 'realloc' will be ignored}} \
-// expected-note{{'realloc' is a builtin with type 'void *(void *, unsigned long)'}}
+// expected-note{{'realloc' is a builtin with type 'void *(void *,}}
   return p;
 }