mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Clean up some unnecessary initializations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83566 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
af4a891273
commit
cd7e327cdf
@ -1405,7 +1405,7 @@ SDNode *ARMDAGToDAGISel::Select(SDValue Op) {
|
|||||||
}
|
}
|
||||||
// Quad registers are loaded with two separate instructions, where one
|
// Quad registers are loaded with two separate instructions, where one
|
||||||
// loads the even registers and the other loads the odd registers.
|
// loads the even registers and the other loads the odd registers.
|
||||||
EVT RegVT = VT;
|
EVT RegVT;
|
||||||
unsigned Opc2 = 0;
|
unsigned Opc2 = 0;
|
||||||
switch (VT.getSimpleVT().SimpleTy) {
|
switch (VT.getSimpleVT().SimpleTy) {
|
||||||
default: llvm_unreachable("unhandled vld3 type");
|
default: llvm_unreachable("unhandled vld3 type");
|
||||||
@ -1465,7 +1465,7 @@ SDNode *ARMDAGToDAGISel::Select(SDValue Op) {
|
|||||||
}
|
}
|
||||||
// Quad registers are loaded with two separate instructions, where one
|
// Quad registers are loaded with two separate instructions, where one
|
||||||
// loads the even registers and the other loads the odd registers.
|
// loads the even registers and the other loads the odd registers.
|
||||||
EVT RegVT = VT;
|
EVT RegVT;
|
||||||
unsigned Opc2 = 0;
|
unsigned Opc2 = 0;
|
||||||
switch (VT.getSimpleVT().SimpleTy) {
|
switch (VT.getSimpleVT().SimpleTy) {
|
||||||
default: llvm_unreachable("unhandled vld4 type");
|
default: llvm_unreachable("unhandled vld4 type");
|
||||||
|
Loading…
Reference in New Issue
Block a user