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;
 }


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to