[llvm] r373015 - [AMDGPU] copy OtherPredicates from pseudo to VOP3_Real
Stanislav Mekhanoshin via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 26 14:06:17 PDT 2019
Author: rampitec
Date: Thu Sep 26 14:06:17 2019
New Revision: 373015
URL: http://llvm.org/viewvc/llvm-project?rev=373015&view=rev
Log:
[AMDGPU] copy OtherPredicates from pseudo to VOP3_Real
Differential Revision: https://reviews.llvm.org/D68102
Modified:
llvm/trunk/lib/Target/AMDGPU/VOPInstructions.td
Modified: llvm/trunk/lib/Target/AMDGPU/VOPInstructions.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/AMDGPU/VOPInstructions.td?rev=373015&r1=373014&r2=373015&view=diff
==============================================================================
--- llvm/trunk/lib/Target/AMDGPU/VOPInstructions.td (original)
+++ llvm/trunk/lib/Target/AMDGPU/VOPInstructions.td Thu Sep 26 14:06:17 2019
@@ -147,6 +147,7 @@ class VOP3_Real <VOP_Pseudo ps, int Enco
// copy relevant pseudo op flags
let SubtargetPredicate = ps.SubtargetPredicate;
+ let OtherPredicates = ps.OtherPredicates;
let AsmMatchConverter = ps.AsmMatchConverter;
let AsmVariantName = ps.AsmVariantName;
let Constraints = ps.Constraints;
More information about the llvm-commits
mailing list