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 | 623f83fb713886fa01c2a9b12de2f85c3c0e5b82 (patch) | |
tree | 3061e8e395af8af5d9d1dcc16599ad6da4c5a831 | |
parent | fd3344db26c9c6d886db2bd7f87bcd04b97f9d97 (diff) |
testcase cleanup
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@50581 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Analysis-Apple/NoReturn.m | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Analysis-Apple/NoReturn.m b/test/Analysis-Apple/NoReturn.m index 6d53003c3c..3447bfbc94 100644 --- a/test/Analysis-Apple/NoReturn.m +++ b/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; |