================ @@ -39,6 +39,10 @@ LLT llvm::getLLTForType(Type &Ty, const DataLayout &DL) { return LLT::scalar(SizeInBits); } + if (Ty.isTokenTy()) { + return LLT::token(); + } ---------------- arsenm wrote: No braces https://github.com/llvm/llvm-project/pull/85189