Displaying 1 result from an estimated 1 matches for "idaho_mt_begin".
2020 May 06
2
Issues porting intrinsics to LLVM 10
...backend for our custom
application.
I have defined intrinsics for many of the custom instructions. Against
LLVM 7 this was working well.
When I try to merge my changes into LLVM 10, I get:
/home/dej/work/llvm_git/llvm-project/llvm/build/lib/Target/RISCV/RISCVGenGlobalISel.inc:11582:60:
error: ‘idaho_mt_begin’ is not a member of ‘llvm::Intrinsic’
GIM_CheckIntrinsicID, /*MI*/0, /*Op*/0, Intrinsic::idaho_mt_begin,
This intrinsic is defined pretty simply:
let TargetPrefix = "idaho" in {
def int_idaho_mt_begin : Intrinsic<[], [llvm_ptr_ty,llvm_i64_ty], []>;
}
With LLVM 7, I notic...