Skip to content

Commit 4f85136

Browse files
committed
AMDGPU: Remove extra parentheses
1 parent 1b1cfe4 commit 4f85136

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -5095,7 +5095,7 @@ void AMDGPUInstructionSelector::renderSetGLC(MachineInstrBuilder &MIB,
50955095
void AMDGPUInstructionSelector::renderFrameIndex(MachineInstrBuilder &MIB,
50965096
const MachineInstr &MI,
50975097
int OpIdx) const {
5098-
MIB.addFrameIndex((MI.getOperand(1).getIndex()));
5098+
MIB.addFrameIndex(MI.getOperand(1).getIndex());
50995099
}
51005100

51015101
bool AMDGPUInstructionSelector::isInlineImmediate16(int64_t Imm) const {

0 commit comments

Comments
 (0)