]> granicus.if.org Git - clang/commitdiff
minor cleanups
authorChris Lattner <sabre@nondot.org>
Thu, 13 Dec 2007 07:47:54 +0000 (07:47 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 13 Dec 2007 07:47:54 +0000 (07:47 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44996 91177308-0d34-0410-b5e6-96231b3b80d8

CodeGen/CGBuiltin.cpp

index 1cd0c27b0e839bc989b158cdfec2ce4f22e607ed..4ed02787166366709098c685d529d55197d9cd0c 100644 (file)
@@ -127,18 +127,14 @@ RValue CodeGenFunction::EmitBuiltinExpr(unsigned BuiltinID, const CallExpr *E) {
   }
   case Builtin::BI__builtin_classify_type: {
     APSInt Result(32);
-    
     if (!E->isBuiltinClassifyType(Result))
       assert(0 && "Expr not __builtin_classify_type!");
-    
     return RValue::get(ConstantInt::get(Result));
   }
   case Builtin::BI__builtin_constant_p: {
     APSInt Result(32);
-
     // FIXME: Analyze the parameter and check if it is a constant.
     Result = 0;
-    
     return RValue::get(ConstantInt::get(Result));
   }
   case Builtin::BI__builtin_abs: {