diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-05-02 17:14:07 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-05-02 17:14:07 +0000 |
commit | 86237c37743e21081ffbee0e1dc5074e57ae47dc (patch) | |
tree | 092ea50094461a0f692d5a06f96d071490818ac2 | |
parent | 5102a25bf876a8c0e85b9ed64296c47bf3069410 (diff) | |
download | bcm5719-llvm-86237c37743e21081ffbee0e1dc5074e57ae47dc.tar.gz bcm5719-llvm-86237c37743e21081ffbee0e1dc5074e57ae47dc.zip |
testcase cleanup
llvm-svn: 50581
-rw-r--r-- | clang/test/Analysis-Apple/NoReturn.m | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/Analysis-Apple/NoReturn.m b/clang/test/Analysis-Apple/NoReturn.m index 6d53003c3c1..3447bfbc94c 100644 --- a/clang/test/Analysis-Apple/NoReturn.m +++ b/clang/test/Analysis-Apple/NoReturn.m @@ -5,7 +5,7 @@ #include <Foundation/NSException.h> #include <Foundation/NSString.h> -int* f1(int *x, NSString* s) { +int f1(int *x, NSString* s) { if (x) ++x; @@ -14,7 +14,7 @@ int* f1(int *x, NSString* s) { return *x; // no-warning } -int* f2(int *x, ...) { +int f2(int *x, ...) { if (x) ++x; va_list alist; @@ -25,7 +25,7 @@ int* f2(int *x, ...) { return *x; // no-warning } -int *f3(int* x) { +int f3(int* x) { if (x) ++x; |