[llvm] r278244 - [Hexagon] Use integer instructions for floating point immediates
Tim Northover via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 10 10:07:27 PDT 2016
> -let isMoveImm = 1, isAsmParserOnly = 1 in
> -def CONST32 : CONSTLDInst<(outs IntRegs:$dst), (ins globaladdress:$global),
> [...]
> +let isReMaterializable = 1, isMoveImm = 1 in
> +def CONST32 : CONSTLDInst<(outs IntRegs:$Rd), (ins i32imm:$v),
I think TableGen is complaining about a decoding conflict because of
the dropped "isAsmParserOnly" here (& CONST64). It doesn't seem to be
a fatal error though, so probably no rush.
Tim.
More information about the llvm-commits
mailing list