commit | c12dd5207d68fe7771cd0ad08859180e67499ca5 | [log] [tgz] |
---|---|---|
author | Dan Gohman <gohman@apple.com> | Fri May 18 23:21:46 2007 +0000 |
committer | Dan Gohman <gohman@apple.com> | Fri May 18 23:21:46 2007 +0000 |
tree | 192ae60bc8a15cb41fe23b4c8af65dc36c5e0ba9 | |
parent | 7ea2df6e2a9826e203c6681fe1ea712807944cac [diff] [blame] |
Apply this patch: http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20070514/049845.html llvm-svn: 37240
diff --git a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp index 818fcd5..9723c7c 100644 --- a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp +++ b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
@@ -222,7 +222,7 @@ // First set operation action for all vector types to expand. Then we // will selectively turn on ones that can be effectively codegen'd. for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE; - VT != (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) { + VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) { // add/sub are legal for all supported vector VT's. setOperationAction(ISD::ADD , (MVT::ValueType)VT, Legal); setOperationAction(ISD::SUB , (MVT::ValueType)VT, Legal);