aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-12-30 21:21:10 +0000
committerChris Lattner <sabre@nondot.org>2007-12-30 21:21:10 +0000
commit0bcfea01008bc931f5877020d4f3db72638c7c39 (patch)
treefbbd9db1f6b8d704c5378418f07e55751cebf0ce /lib/CodeGen
parent216ac7c3ee2a583362886cb4166ec2b5722871ff (diff)
downloadexternal_llvm-0bcfea01008bc931f5877020d4f3db72638c7c39.zip
external_llvm-0bcfea01008bc931f5877020d4f3db72638c7c39.tar.gz
external_llvm-0bcfea01008bc931f5877020d4f3db72638c7c39.tar.bz2
fix typo duncan noticed!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45459 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r--lib/CodeGen/SelectionDAG/TargetLowering.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/lib/CodeGen/SelectionDAG/TargetLowering.cpp
index c6fd113..ae5c398 100644
--- a/lib/CodeGen/SelectionDAG/TargetLowering.cpp
+++ b/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);
}
}