diff options
| author | Bob Wilson <bob.wilson@apple.com> | 2010-06-19 05:33:57 +0000 |
|---|---|---|
| committer | Bob Wilson <bob.wilson@apple.com> | 2010-06-19 05:33:57 +0000 |
| commit | 4581434c27daed4f693323ff48dbea1b35812805 (patch) | |
| tree | 1863baf9e1fd037e9f5b6a88b2e838d6aac31998 /llvm/lib/CodeGen | |
| parent | 6d12973143b1b3d76734a244fb8d72cbcf975c8b (diff) | |
| download | bcm5719-llvm-4581434c27daed4f693323ff48dbea1b35812805.tar.gz bcm5719-llvm-4581434c27daed4f693323ff48dbea1b35812805.zip | |
Tidy.
llvm-svn: 106383
Diffstat (limited to 'llvm/lib/CodeGen')
| -rw-r--r-- | llvm/lib/CodeGen/IfConversion.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/CodeGen/IfConversion.cpp b/llvm/lib/CodeGen/IfConversion.cpp index 16d324735c8..0e1edc43dae 100644 --- a/llvm/lib/CodeGen/IfConversion.cpp +++ b/llvm/lib/CodeGen/IfConversion.cpp @@ -994,7 +994,7 @@ bool IfConverter::IfConvertSimple(BBInfo &BBI, IfcvtKind Kind) { if (TII->ReverseBranchCondition(Cond)) assert(false && "Unable to reverse branch condition!"); - // Initialize liveins to the first BB. These are potentiall re-defined by + // Initialize liveins to the first BB. These are potentiall redefined by // predicated instructions. SmallSet<unsigned, 4> Redefs; InitPredRedefs(CvtBBI->BB, Redefs, TRI); @@ -1085,7 +1085,7 @@ bool IfConverter::IfConvertTriangle(BBInfo &BBI, IfcvtKind Kind) { } } - // Initialize liveins to the first BB. These are potentiall re-defined by + // Initialize liveins to the first BB. These are potentially redefined by // predicated instructions. SmallSet<unsigned, 4> Redefs; InitPredRedefs(CvtBBI->BB, Redefs, TRI); @@ -1205,7 +1205,7 @@ bool IfConverter::IfConvertDiamond(BBInfo &BBI, IfcvtKind Kind, // Remove the conditional branch from entry to the blocks. BBI.NonPredSize -= TII->RemoveBranch(*BBI.BB); - // Initialize liveins to the first BB. These are potentiall re-defined by + // Initialize liveins to the first BB. These are potentiall redefined by // predicated instructions. SmallSet<unsigned, 4> Redefs; InitPredRedefs(BBI1->BB, Redefs, TRI); @@ -1307,7 +1307,7 @@ void IfConverter::PredicateBlock(BBInfo &BBI, llvm_unreachable(0); } - // If the predicated instruction now re-defines a register as the result of + // If the predicated instruction now redefines a register as the result of // if-conversion, add an implicit kill. UpdatePredRedefs(I, Redefs, TRI, true); } @@ -1348,7 +1348,7 @@ void IfConverter::CopyAndPredicateBlock(BBInfo &ToBBI, BBInfo &FromBBI, } } - // If the predicated instruction now re-defines a register as the result of + // If the predicated instruction now redefines a register as the result of // if-conversion, add an implicit kill. UpdatePredRedefs(MI, Redefs, TRI, true); } |

