diff options
author | Duncan Sands <baldrick@free.fr> | 2008-03-12 20:35:19 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2008-03-12 20:35:19 +0000 |
commit | 87a8615015ad85f1a95f79da221c7da9428d2208 (patch) | |
tree | ee89ed94da66d3568be1e9906be059ffc55e2afa /lib/CodeGen/SelectionDAG/LegalizeTypesScalarize.cpp | |
parent | 25eb043759c23b61769108f78382eb9701c41db2 (diff) |
Fix typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48295 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/LegalizeTypesScalarize.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/LegalizeTypesScalarize.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/LegalizeTypesScalarize.cpp b/lib/CodeGen/SelectionDAG/LegalizeTypesScalarize.cpp index 6610693dd7..ae3a09fb0c 100644 --- a/lib/CodeGen/SelectionDAG/LegalizeTypesScalarize.cpp +++ b/lib/CodeGen/SelectionDAG/LegalizeTypesScalarize.cpp @@ -83,7 +83,7 @@ void DAGTypeLegalizer::ScalarizeResult(SDNode *N, unsigned ResNo) { case ISD::SELECT: R = ScalarizeRes_SELECT(N); break; } - // If R is null, the sub-method took care of registering the resul. + // If R is null, the sub-method took care of registering the result. if (R.Val) SetScalarizedOp(SDOperand(N, ResNo), R); } |