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 | 4bc0455d826e9634b7a68c0d06146edd633c9453 (patch) | |
tree | 7a9bfb47227ad57abea72362f947c9f149842fad /lib/CodeGen/CodeGenFunction.h | |
parent | 4efaa276bc0ce8f7baf6138ead11915f3e3e58d9 (diff) |
Comment/indentation fix.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59127 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index 3489b78239..21d8f4f6ed 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/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 |