[llvm-commits] [llvm] r45459 - /llvm/trunk/lib/CodeGen/SelectionDAG/TargetLowering.cpp
Chris Lattner
sabre at nondot.org
Sun Dec 30 13:21:10 PST 2007
Author: lattner
Date: Sun Dec 30 15:21:10 2007
New Revision: 45459
URL: http://llvm.org/viewvc/llvm-project?rev=45459&view=rev
Log:
fix typo duncan noticed!
Modified:
llvm/trunk/lib/CodeGen/SelectionDAG/TargetLowering.cpp
Modified: llvm/trunk/lib/CodeGen/SelectionDAG/TargetLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/TargetLowering.cpp?rev=45459&r1=45458&r2=45459&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/TargetLowering.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/TargetLowering.cpp Sun Dec 30 15:21:10 2007
@@ -1291,7 +1291,7 @@
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);
}
}
More information about the llvm-commits
mailing list