From: Douglas Gregor Date: Thu, 19 Feb 2009 00:03:13 +0000 (+0000) Subject: Make error-message check platform-agnostic X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9b76143b09a601dc3990b55934f02097f093a699;p=clang Make error-message check platform-agnostic git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64985 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Sema/implicit-builtin-redecl.c b/test/Sema/implicit-builtin-redecl.c index 9ff23f9f13..c9b38558b3 100644 --- a/test/Sema/implicit-builtin-redecl.c +++ b/test/Sema/implicit-builtin-redecl.c @@ -7,7 +7,7 @@ static void* malloc(int size) { } void *calloc(int, int, int); // expected-warning{{incompatible redeclaration of library function 'calloc' will be ignored}} \ -// expected-note{{'calloc' is a builtin with type 'void *(unsigned long, unsigned long)'}} +// expected-note{{'calloc' is a builtin with type 'void *}} void f1(void) { return calloc(0, 0, 0); // expected-error{{too many arguments to function call}}