diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2008-11-12 10:12:14 +0000 |
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2008-11-12 10:12:14 +0000 |
| commit | 682712cda05bd0cb1d316b9171d33c2ef3c37d45 (patch) | |
| tree | 027073432439c5e7be626d86d621eb974c3fc756 | |
| parent | d85a1669b9d5cfd30870f579f4a4026a092b95a7 (diff) | |
| download | bcm5719-llvm-682712cda05bd0cb1d316b9171d33c2ef3c37d45.tar.gz bcm5719-llvm-682712cda05bd0cb1d316b9171d33c2ef3c37d45.zip | |
Comment/indentation fix.
llvm-svn: 59127
| -rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 3489b782398..21d8f4f6ed2 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -575,7 +575,7 @@ public: /// that we can just remove the code. static bool ContainsLabel(const Stmt *S, bool IgnoreCaseStmts = false); - /// ConstantFoldsToSimpleInteger - If the sepcified expression does not fold + /// ConstantFoldsToSimpleInteger - If the specified expression does not fold /// to a constant, or if it does but contains a label, return 0. If it /// constant folds to 'true' and does not contain a label, return 1, if it /// constant folds to 'false' and does not contain a label, return -1. @@ -586,7 +586,7 @@ public: /// try to simplify the codegen of the conditional based on the branch. /// void EmitBranchOnBoolExpr(const Expr *Cond, llvm::BasicBlock *TrueBlock, - llvm::BasicBlock *FalseBlock); + llvm::BasicBlock *FalseBlock); private: /// EmitIndirectSwitches - Emit code for all of the switch |

