]> granicus.if.org Git - clang/commitdiff
testcase cleanup
authorTed Kremenek <kremenek@apple.com>
Fri, 2 May 2008 17:14:07 +0000 (17:14 +0000)
committerTed Kremenek <kremenek@apple.com>
Fri, 2 May 2008 17:14:07 +0000 (17:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@50581 91177308-0d34-0410-b5e6-96231b3b80d8

test/Analysis-Apple/NoReturn.m

index 6d53003c3c1a28fdeb62a7c9b7ccf44d681c95e9..3447bfbc94c86bcdc0391dc242340b139f799a35 100644 (file)
@@ -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;