[PATCH] D28631: AMDGPU: Remove modifiers from v_div_scale_*
Matt Arsenault via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Jan 13 08:52:55 PST 2017
arsenm added inline comments.
================
Comment at: lib/Target/AMDGPU/AMDGPUISelDAGToDAG.cpp:732-739
+ SDValue Ops[3];
+ Ops[0] = N->getOperand(0);
+ Ops[1] = N->getOperand(1);
+ Ops[2] = N->getOperand(2);
+
+ //SelectVOP3Mods0(N->getOperand(0), Ops[1], Ops[0], Ops[6], Ops[7]);
+ //SelectVOP3Mods(N->getOperand(1), Ops[3], Ops[2]);
----------------
I've fixed the commented out code and formatted the array better
https://reviews.llvm.org/D28631
More information about the llvm-commits
mailing list