]> granicus.if.org Git - clang/commitdiff
fix long lines.
authorChris Lattner <sabre@nondot.org>
Thu, 3 Jan 2008 07:05:49 +0000 (07:05 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 3 Jan 2008 07:05:49 +0000 (07:05 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45531 91177308-0d34-0410-b5e6-96231b3b80d8

CodeGen/CGExprScalar.cpp

index 639b907e027183a78d17a174baa9fbd57be255d6..023e907499b16b1b738a07b6ecdc3b855f931448 100644 (file)
@@ -19,7 +19,7 @@
 #include "llvm/GlobalVariable.h"
 #include "llvm/Intrinsics.h"
 #include "llvm/Support/Compiler.h"
-#include <stdarg.h>                                                                                                              
+#include <cstdarg>
 
 using namespace clang;
 using namespace CodeGen;
@@ -948,8 +948,8 @@ VisitConditionalOperator(const ConditionalOperator *E) {
   // because we need the unconverted value if this is a GNU ?: expression with
   // missing middle value.
   Value *CondVal = CGF.EmitScalarExpr(E->getCond());
-  Value *CondBoolVal = CGF.EmitScalarConversion(CondVal, E->getCond()->getType(), 
-                                                CGF.getContext().BoolTy);
+  Value *CondBoolVal =CGF.EmitScalarConversion(CondVal, E->getCond()->getType(),
+                                               CGF.getContext().BoolTy);
   Builder.CreateCondBr(CondBoolVal, LHSBlock, RHSBlock);
   
   CGF.EmitBlock(LHSBlock);