diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2009-06-04 19:35:30 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2009-06-04 19:35:30 +0000 |
commit | 8001b35d5d6cb5737696919e23a58f7c9fdf2be0 (patch) | |
tree | 3a5c5f1442bf3efec0a6cc10955aef777aade91b /clang/test/Analysis/ptr-arith.c | |
parent | 820c62e4474181fe2e36dae68e6652328361e822 (diff) | |
download | bcm5719-llvm-8001b35d5d6cb5737696919e23a58f7c9fdf2be0.tar.gz bcm5719-llvm-8001b35d5d6cb5737696919e23a58f7c9fdf2be0.zip |
Clean up builtin lists, add a few new builtins. (I re-sorted the
string.h builtins to be in the same order as the list in the C99
standard.)
llvm-svn: 72882
Diffstat (limited to 'clang/test/Analysis/ptr-arith.c')
-rw-r--r-- | clang/test/Analysis/ptr-arith.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Analysis/ptr-arith.c b/clang/test/Analysis/ptr-arith.c index ea8b7f56661..34840c7b7c5 100644 --- a/clang/test/Analysis/ptr-arith.c +++ b/clang/test/Analysis/ptr-arith.c @@ -18,7 +18,7 @@ void f2() { // This test case checks if we get the right rvalue type of a TypedViewRegion. // The ElementRegion's type depends on the array region's rvalue type. If it was // a pointer type, we would get a loc::SymbolVal for '*p'. -char* memchr(); +void* memchr(); static int domain_port (const char *domain_b, const char *domain_e, const char **domain_e_ptr) |