diff options
Diffstat (limited to 'test/Analysis/sizeofpointer.c')
-rw-r--r-- | test/Analysis/sizeofpointer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Analysis/sizeofpointer.c b/test/Analysis/sizeofpointer.c index 0c86de8..aa85fc0 100644 --- a/test/Analysis/sizeofpointer.c +++ b/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}} } |