diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-02-15 02:26:10 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-02-15 02:26:10 +0000 |
commit | d84d35ba70296aca01d3c48ab9088b0515619fd9 (patch) | |
tree | 1badc3977131947db9d60139549cbdb3898ffb09 /llvm/lib/Transforms/Scalar/Reassociate.cpp | |
parent | dad84a7c0203636b30f98d6d2315bf5af0ec6046 (diff) | |
download | bcm5719-llvm-d84d35ba70296aca01d3c48ab9088b0515619fd9.tar.gz bcm5719-llvm-d84d35ba70296aca01d3c48ab9088b0515619fd9.zip |
For PR1195:
Rename PackedType -> VectorType, ConstantPacked -> ConstantVector, and
PackedTyID -> VectorTyID. No functional changes.
llvm-svn: 34293
Diffstat (limited to 'llvm/lib/Transforms/Scalar/Reassociate.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/Reassociate.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/Reassociate.cpp b/llvm/lib/Transforms/Scalar/Reassociate.cpp index 2193777e250..e1dbb9b0d1b 100644 --- a/llvm/lib/Transforms/Scalar/Reassociate.cpp +++ b/llvm/lib/Transforms/Scalar/Reassociate.cpp @@ -752,7 +752,7 @@ void Reassociate::ReassociateBB(BasicBlock *BB) { // Reject cases where it is pointless to do this. if (!isa<BinaryOperator>(BI) || BI->getType()->isFloatingPoint() || - isa<PackedType>(BI->getType())) + isa<VectorType>(BI->getType())) continue; // Floating point ops are not associative. // If this is a subtract instruction which is not already in negate form, |