[cfe-commits] r64867 - /cfe/trunk/test/Sema/implicit-builtin-decl.c

Eli Friedman eli.friedman at gmail.com
Tue Feb 17 16:52:29 PST 2009


Author: efriedma
Date: Tue Feb 17 18:52:29 2009
New Revision: 64867

URL: http://llvm.org/viewvc/llvm-project?rev=64867&view=rev
Log:
Fix test on platforms where size_t != unsigned long.


Modified:
    cfe/trunk/test/Sema/implicit-builtin-decl.c

Modified: cfe/trunk/test/Sema/implicit-builtin-decl.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Sema/implicit-builtin-decl.c?rev=64867&r1=64866&r2=64867&view=diff

==============================================================================
--- cfe/trunk/test/Sema/implicit-builtin-decl.c (original)
+++ cfe/trunk/test/Sema/implicit-builtin-decl.c Tue Feb 17 18:52:29 2009
@@ -36,6 +36,6 @@
 }
 
 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;
 }





More information about the cfe-commits mailing list