diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2009-02-18 00:52:29 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2009-02-18 00:52:29 +0000 |
commit | edbb94cee89ba366989f0a6d05debbb5d54d4342 (patch) | |
tree | 3c76494478f499abd49f4e053df5a3a250b3143f | |
parent | 2d6744ff04c1690a1485178d550d2fab84a0270b (diff) |
Fix test on platforms where size_t != unsigned long.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64867 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Sema/implicit-builtin-decl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Sema/implicit-builtin-decl.c b/test/Sema/implicit-builtin-decl.c index 4c28d8cf3e..e1f24e35f3 100644 --- a/test/Sema/implicit-builtin-decl.c +++ b/test/Sema/implicit-builtin-decl.c @@ -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; } |