[PATCH] D38906: AMDGPU/SI: Implement d16 support for buffer intrinsics
Matt Arsenault via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 11 09:56:05 PST 2018
arsenm added inline comments.
================
Comment at: lib/Target/AMDGPU/SIISelLowering.cpp:4915
+ bool IsD16 = false;
+ SDValue VData = handleVDataToStore(Op, &IsD16, DAG);
SDValue Ops[] = {
----------------
You don't need a pointer out argument here. You can just have handleVDataToStore return SDValue() if it doesn't need to do anything. If it actaully does something you know it is d16
https://reviews.llvm.org/D38906
More information about the llvm-commits
mailing list