diff options
author | Chris Lattner <sabre@nondot.org> | 2005-08-09 23:08:53 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-08-09 23:08:53 +0000 |
commit | 4cf009f49cd37ae9cf4096dfe7ee9bcfa8e59b7a (patch) | |
tree | be1089acc50c62837e4db33fd22a01862e23e9a8 | |
parent | c7e18a10d412b24fd1054851a8ad277a3a747471 (diff) |
I can't believe I caught this before Misha! :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22733 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/CodeGen/SelectionDAG.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/SelectionDAG.h b/include/llvm/CodeGen/SelectionDAG.h index c7a9cff07a..68f943046a 100644 --- a/include/llvm/CodeGen/SelectionDAG.h +++ b/include/llvm/CodeGen/SelectionDAG.h @@ -207,8 +207,8 @@ private: // Try to simplify a setcc built with the specified operands and cc. If // unable to simplify it, return a null SDOperand. - SDOperand SimplfySetCC(MVT::ValueType VT, SDOperand N1, - SDOperand N2, ISD::CondCode Cond); + SDOperand SimplifySetCC(MVT::ValueType VT, SDOperand N1, + SDOperand N2, ISD::CondCode Cond); // Maps to auto-CSE operations. |