forked from OSchip/llvm-project
AMDGPU: Silence unused warnings in waitcnt insertion pass in release build
Differential Revision: https://reviews.llvm.org/D48607 llvm-svn: 335669
This commit is contained in:
parent
67599c2e1e
commit
777477705a
|
@ -393,7 +393,11 @@ private:
|
|||
public:
|
||||
static char ID;
|
||||
|
||||
SIInsertWaitcnts() : MachineFunctionPass(ID) {}
|
||||
SIInsertWaitcnts() : MachineFunctionPass(ID) {
|
||||
(void)ForceExpCounter;
|
||||
(void)ForceLgkmCounter;
|
||||
(void)ForceVMCounter;
|
||||
}
|
||||
|
||||
bool runOnMachineFunction(MachineFunction &MF) override;
|
||||
|
||||
|
|
Loading…
Reference in New Issue