diff options
author | Chris Lattner <sabre@nondot.org> | 2007-12-30 21:21:10 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-12-30 21:21:10 +0000 |
commit | 96317d2412b87af0dfd7ff9a414f248e3d88febb (patch) | |
tree | 861d64e8ef11a35c7379d9d4c85d924ab18486d8 /llvm/lib/CodeGen | |
parent | 35fececec9691bb4cd957f972593562d45e1302b (diff) | |
download | bcm5719-llvm-96317d2412b87af0dfd7ff9a414f248e3d88febb.tar.gz bcm5719-llvm-96317d2412b87af0dfd7ff9a414f248e3d88febb.zip |
fix typo duncan noticed!
llvm-svn: 45459
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp index c6fd113ee75..ae5c398f772 100644 --- a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp @@ -1291,7 +1291,7 @@ TargetLowering::SimplifySetCC(MVT::ValueType VT, SDOperand N0, SDOperand N1, return DAG.getConstant(0, VT); case 1: // Known true. return DAG.getConstant(1, VT); - case 2: // undefind. + case 2: // Undefined. return DAG.getNode(ISD::UNDEF, VT); } } |