[llvm] [GlobalISel][LLT] Introduce FPInfo for LLT (Enable bfloat, ppc128float and others in GlobalISel) (PR #155107)
Pierre van Houtryve via llvm-commits
llvm-commits at lists.llvm.org
Mon Sep 15 01:21:04 PDT 2025
================
@@ -3732,6 +3722,20 @@ bool IRTranslator::translate(const Constant &C, Register Reg) {
return true;
}
+bool IRTranslator::mayTranslateUserTypes(const User &U) const {
+ if (TLI->getTargetMachine().Options.EnableGlobalISelExtendedLLT) {
+ return true;
+ }
----------------
Pierre-vh wrote:
```suggestion
if (TLI->getTargetMachine().Options.EnableGlobalISelExtendedLLT)
return true;
```
https://github.com/llvm/llvm-project/pull/155107
More information about the llvm-commits
mailing list