From: Ted Kremenek Date: Fri, 2 May 2008 17:14:07 +0000 (+0000) Subject: testcase cleanup X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=623f83fb713886fa01c2a9b12de2f85c3c0e5b82;p=clang testcase cleanup git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@50581 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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 #include -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;