diff options
| author | Chris Lattner <sabre@nondot.org> | 2008-01-03 07:05:49 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2008-01-03 07:05:49 +0000 |
| commit | 1800c18ebd1c9ad5ea953ff85ba0fbe7361b00e2 (patch) | |
| tree | d5257eb15a3d82ff862aa37318fdef8336774380 | |
| parent | 20455f204f28075d8dda8cec7975acc42a8bfe69 (diff) | |
| download | bcm5719-llvm-1800c18ebd1c9ad5ea953ff85ba0fbe7361b00e2.tar.gz bcm5719-llvm-1800c18ebd1c9ad5ea953ff85ba0fbe7361b00e2.zip | |
fix long lines.
llvm-svn: 45531
| -rw-r--r-- | clang/CodeGen/CGExprScalar.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/CodeGen/CGExprScalar.cpp b/clang/CodeGen/CGExprScalar.cpp index 639b907e027..023e907499b 100644 --- a/clang/CodeGen/CGExprScalar.cpp +++ b/clang/CodeGen/CGExprScalar.cpp @@ -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); |

