[cfe-commits] r50581 - /cfe/trunk/test/Analysis-Apple/NoReturn.m

Ted Kremenek kremenek at apple.com
Fri May 2 10:14:07 PDT 2008


Author: kremenek
Date: Fri May  2 12:14:07 2008
New Revision: 50581

URL: http://llvm.org/viewvc/llvm-project?rev=50581&view=rev
Log:
testcase cleanup

Modified:
    cfe/trunk/test/Analysis-Apple/NoReturn.m

Modified: cfe/trunk/test/Analysis-Apple/NoReturn.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Analysis-Apple/NoReturn.m?rev=50581&r1=50580&r2=50581&view=diff

==============================================================================
--- cfe/trunk/test/Analysis-Apple/NoReturn.m (original)
+++ cfe/trunk/test/Analysis-Apple/NoReturn.m Fri May  2 12:14:07 2008
@@ -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 @@
   return *x; // no-warning
 }
 
-int* f2(int *x, ...) {
+int f2(int *x, ...) {
   
   if (x) ++x;
   va_list alist;
@@ -25,7 +25,7 @@
   return *x; // no-warning
 }
 
-int *f3(int* x) {
+int f3(int* x) {
   
   if (x) ++x;
   





More information about the cfe-commits mailing list