mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
[BBVectorize] Remove two more redundant assignments.
Found by the Clang static analyzer. llvm-svn: 224590
This commit is contained in:
parent
a5daa85a3d
commit
6ecc887cd6
@ -2609,7 +2609,6 @@ namespace {
|
||||
true, o, 1));
|
||||
NewI1->insertBefore(IBeforeJ ? J : I);
|
||||
I1 = NewI1;
|
||||
I1T = I2T;
|
||||
I1Elem = I2Elem;
|
||||
} else if (I1Elem > I2Elem) {
|
||||
std::vector<Constant *> Mask(I1Elem);
|
||||
@ -2626,7 +2625,6 @@ namespace {
|
||||
true, o, 1));
|
||||
NewI2->insertBefore(IBeforeJ ? J : I);
|
||||
I2 = NewI2;
|
||||
I2T = I1T;
|
||||
}
|
||||
|
||||
// Now that both I1 and I2 are the same length we can shuffle them
|
||||
|
Loading…
Reference in New Issue
Block a user