diff options
author | Justin Bogner <mail@justinbogner.com> | 2013-11-22 10:20:40 +0000 |
---|---|---|
committer | Justin Bogner <mail@justinbogner.com> | 2013-11-22 10:20:40 +0000 |
commit | 0f06606b68fee7b41225d91d79cf2d27a151ff93 (patch) | |
tree | 577e19ab50c196fb4990016944e2db47e1c20f10 /clang/lib/CodeGen/CGStmt.cpp | |
parent | db643d7678dda2675346bc8caaa9cb8c67965528 (diff) | |
download | bcm5719-llvm-0f06606b68fee7b41225d91d79cf2d27a151ff93.tar.gz bcm5719-llvm-0f06606b68fee7b41225d91d79cf2d27a151ff93.zip |
CodeGen: Whitespace
llvm-svn: 195437
Diffstat (limited to 'clang/lib/CodeGen/CGStmt.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGStmt.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/CodeGen/CGStmt.cpp b/clang/lib/CodeGen/CGStmt.cpp index 0bc51ddb517..1d91e926865 100644 --- a/clang/lib/CodeGen/CGStmt.cpp +++ b/clang/lib/CodeGen/CGStmt.cpp @@ -242,7 +242,7 @@ CodeGenFunction::EmitCompoundStmtWithoutScope(const CompoundStmt &S, EmitAnyExprToMem(cast<Expr>(LastStmt), RetAlloca, Qualifiers(), /*IsInit*/false); } - + } return RetAlloca; @@ -959,7 +959,7 @@ void CodeGenFunction::EmitCaseStmt(const CaseStmt &S) { // If there is no enclosing switch instance that we're aware of, then this // case statement and its block can be elided. This situation only happens // when we've constant-folded the switch, are emitting the constant case, - // and part of the constant case includes another case statement. For + // and part of the constant case includes another case statement. For // instance: switch (4) { case 4: do { case 5: } while (1); } if (!SwitchInsn) { EmitStmt(S.getSubStmt()); @@ -1493,7 +1493,7 @@ void CodeGenFunction::EmitAsmStmt(const AsmStmt &S) { Name = GAS->getOutputName(i); TargetInfo::ConstraintInfo Info(S.getOutputConstraint(i), Name); bool IsValid = getTarget().validateOutputConstraint(Info); (void)IsValid; - assert(IsValid && "Failed to parse output constraint"); + assert(IsValid && "Failed to parse output constraint"); OutputConstraintInfos.push_back(Info); } |