Conversation
antoyo
left a comment
There was a problem hiding this comment.
Please also enable the tile tests by adressing this comment.
|
@antoyo i need some clarity on impl. the tile intrinsics. currently, I see a few possible approaches:
"llvm.x86.ldtilecfg" => {
let name = "__rustc_tile_ldtilecfg";
let func = cx.context.new_function(
None,
FunctionType::Internal,
cx.type_void(),
&[/* params */],
name,
false,
);
} |
|
Yeah, Perhaps your solution #2 would be the simplest (if that works). You could add the attribute AlwaysInline to make sure it's efficient. Otherwise, I see another solution involving changing the |
this pr fixes #563