diff options
Diffstat (limited to 'clang/test/Analysis/sizeofpointer.c')
-rw-r--r-- | clang/test/Analysis/sizeofpointer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Analysis/sizeofpointer.c b/clang/test/Analysis/sizeofpointer.c index 0c86de88ae2..aa85fc002aa 100644 --- a/clang/test/Analysis/sizeofpointer.c +++ b/clang/test/Analysis/sizeofpointer.c @@ -4,5 +4,5 @@ struct s { }; int f(struct s *p) { - return sizeof(p); // expected-warning{{The code calls sizeof() on a pointer type. This can produce an unexpected result.}} + return sizeof(p); // expected-warning{{The code calls sizeof() on a pointer type. This can produce an unexpected result}} } |