[PATCH] D147157: [AMDGPU] Do not fix implicit vcc operand on INLINEASM
Jay Foad via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 29 12:33:47 PDT 2023
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG3e3594c771e6: [AMDGPU] Do not fix implicit vcc operand on INLINEASM (authored by foad).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D147157/new/
https://reviews.llvm.org/D147157
Files:
llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
Index: llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
===================================================================
--- llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
+++ llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
@@ -7877,6 +7877,9 @@
if (!ST.isWave32())
return;
+ if (MI.isInlineAsm())
+ return;
+
for (auto &Op : MI.implicit_operands()) {
if (Op.isReg() && Op.getReg() == AMDGPU::VCC)
Op.setReg(AMDGPU::VCC_LO);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D147157.509444.patch
Type: text/x-patch
Size: 430 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230329/5d6beeb4/attachment.bin>
More information about the llvm-commits
mailing list