forked from OSchip/llvm-project
[AMDGPU] Fix declaration parameter names to match definition
This fixes the declaration of AMDGPULegalizerInfo::legalizeBufferLoad to match the definition. It is still confusing that that parameter order is different from legalizeBufferStore. https://bugs.llvm.org/show_bug.cgi?id=47535
This commit is contained in:
parent
b34ddfcc76
commit
f11f382523
|
@ -158,8 +158,8 @@ public:
|
|||
MachineIRBuilder &B, bool IsTyped,
|
||||
bool IsFormat) const;
|
||||
bool legalizeBufferLoad(MachineInstr &MI, MachineRegisterInfo &MRI,
|
||||
MachineIRBuilder &B, bool IsTyped,
|
||||
bool IsFormat) const;
|
||||
MachineIRBuilder &B, bool IsFormat,
|
||||
bool IsTyped) const;
|
||||
bool legalizeBufferAtomic(MachineInstr &MI, MachineIRBuilder &B,
|
||||
Intrinsic::ID IID) const;
|
||||
|
||||
|
|
Loading…
Reference in New Issue