diff options
author | Dan Gohman <gohman@apple.com> | 2010-07-02 00:10:16 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-07-02 00:10:16 +0000 |
commit | 93f59209142897dbc36d83c6a64e822ebfa92aae (patch) | |
tree | 8fc2b2ef23e7d32c98278fe2f8f8292b750c2759 /llvm/lib/CodeGen/SelectionDAG/FastISel.cpp | |
parent | 19ebcd0f287edaee683b1b581ed5e13692616ba2 (diff) | |
download | bcm5719-llvm-93f59209142897dbc36d83c6a64e822ebfa92aae.tar.gz bcm5719-llvm-93f59209142897dbc36d83c6a64e822ebfa92aae.zip |
Rename CreateReg to CreateRegs, and MakeReg to CreateReg.
llvm-svn: 107451
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/FastISel.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/FastISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp b/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp index e5538699fbc..93c194ab548 100644 --- a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp @@ -1211,7 +1211,7 @@ bool FastISel::HandlePHINodesInSuccessorBlocks(const BasicBlock *LLVMBB) { // by bailing out early, we may leave behind some dead instructions, // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its // own moves. Second, this check is necessary becuase FastISel doesn't - // use CreateReg to create registers, so it always creates + // use CreateRegs to create registers, so it always creates // exactly one register for each non-void instruction. EVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true); if (VT == MVT::Other || !TLI.isTypeLegal(VT)) { |