[PATCH] D37065: Ensure standard pseudo instructions (TargetOpcode::*) are compatible with guessInstructionProperties=0
Alex Bradbury via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 23 10:14:37 PDT 2017
asb added inline comments.
================
Comment at: include/llvm/Target/Target.td:818
let AsmString = "PHINODE";
+ let hasSideEffects = 1;
}
----------------
qcolombet wrote:
> I would default hasSideEffects to 0.
It seemed odd to me too, but changing it would mean this patch does represent a functional change. I did try setting it to 0 before updating this patch, but found it results in a number of MachineVerifier errors as well as changes in test output.
https://reviews.llvm.org/D37065
More information about the llvm-commits
mailing list