[cfe-commits] r58444 - /cfe/trunk/lib/Analysis/GRExprEngine.cpp

Ted Kremenek kremenek at apple.com
Thu Oct 30 11:34:32 PDT 2008


Author: kremenek
Date: Thu Oct 30 13:34:31 2008
New Revision: 58444

URL: http://llvm.org/viewvc/llvm-project?rev=58444&view=rev
Log:
Add missing return statement.

Modified:
    cfe/trunk/lib/Analysis/GRExprEngine.cpp

Modified: cfe/trunk/lib/Analysis/GRExprEngine.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Analysis/GRExprEngine.cpp?rev=58444&r1=58443&r2=58444&view=diff

==============================================================================
--- cfe/trunk/lib/Analysis/GRExprEngine.cpp (original)
+++ cfe/trunk/lib/Analysis/GRExprEngine.cpp Thu Oct 30 13:34:31 2008
@@ -1686,6 +1686,8 @@
         }
       }
     }
+    
+    return;
   }
 
   if (Loc::IsLocType(T) || T->isIntegerType()) {





More information about the cfe-commits mailing list