1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-26 04:32:44 +01:00

[NVPTX] Fix warning, remove extra ";" [NFC]

gcc complained with
../lib/Target/NVPTX/NVPTXLowerArgs.cpp:203:2: warning: extra ';' [-Wpedantic]
  203 | };
      |  ^
This commit is contained in:
Mikael Holmen 2021-03-19 09:26:14 +01:00
parent 98c202121a
commit 4506cf6384

View File

@ -200,7 +200,7 @@ static bool isALoadChain(Value *Start) {
return false;
}
return true;
};
}
void NVPTXLowerArgs::handleByValParam(Argument *Arg) {
Function *Func = Arg->getParent();