mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-10 20:33:15 +00:00
Use '-1U' where '-1UL' is obvious overkill, eliminating gcc warnings about
tests always being true in the process. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36387 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e84bcb922d
commit
f147a8d56e
@ -1177,7 +1177,7 @@ void SelectionDAGLowering::visitSwitchCase(SelectionDAGISel::CaseBlock &CB) {
|
|||||||
/// visitJumpTable - Emit JumpTable node in the current MBB
|
/// visitJumpTable - Emit JumpTable node in the current MBB
|
||||||
void SelectionDAGLowering::visitJumpTable(SelectionDAGISel::JumpTable &JT) {
|
void SelectionDAGLowering::visitJumpTable(SelectionDAGISel::JumpTable &JT) {
|
||||||
// Emit the code for the jump table
|
// Emit the code for the jump table
|
||||||
assert(JT.Reg != -1UL && "Should lower JT Header first!");
|
assert(JT.Reg != -1U && "Should lower JT Header first!");
|
||||||
MVT::ValueType PTy = TLI.getPointerTy();
|
MVT::ValueType PTy = TLI.getPointerTy();
|
||||||
SDOperand Index = DAG.getCopyFromReg(getRoot(), JT.Reg, PTy);
|
SDOperand Index = DAG.getCopyFromReg(getRoot(), JT.Reg, PTy);
|
||||||
SDOperand Table = DAG.getJumpTable(JT.JTI, PTy);
|
SDOperand Table = DAG.getJumpTable(JT.JTI, PTy);
|
||||||
@ -1544,7 +1544,7 @@ bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR,
|
|||||||
|
|
||||||
// Set the jump table information so that we can codegen it as a second
|
// Set the jump table information so that we can codegen it as a second
|
||||||
// MachineBasicBlock
|
// MachineBasicBlock
|
||||||
SelectionDAGISel::JumpTable JT(-1UL, JTI, JumpTableBB, Default);
|
SelectionDAGISel::JumpTable JT(-1U, JTI, JumpTableBB, Default);
|
||||||
SelectionDAGISel::JumpTableHeader JTH(First, Last, SV, CR.CaseBB,
|
SelectionDAGISel::JumpTableHeader JTH(First, Last, SV, CR.CaseBB,
|
||||||
(CR.CaseBB == CurMBB));
|
(CR.CaseBB == CurMBB));
|
||||||
if (CR.CaseBB == CurMBB)
|
if (CR.CaseBB == CurMBB)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user