Displaying 2 results from an estimated 2 matches for "__amdil_dummy_intr1".
2011 Apr 13
2
[LLVMdev] weird issue with target intrinsics
...ring if anyone has seen this issue before and if so, how was it fixed?
I have a file with multitude of target intrinsic in my code generator. It has worked great so far, but now I am running into this weird issue. If I add two new intrinsics such as:
def int_AMDIL_dummy_intr 1: GCCBuiltin<"__amdil_dummy_intr1">,
Intrinsic<[], [llvm_ptr_ty]>;
def int_AMDIL_dummy_intr2 : GCCBuiltin<"__amdil_dummy_intr2">,
Intrinsic<[], [llvm_ptr_ty]>;
Once I do this, I get an error that a completely unrelated intrinsic can no longer be selected. If I com...
2011 Apr 14
0
[LLVMdev] weird issue with target intrinsics
Hi Micah
> def int_AMDIL_dummy_intr 1: GCCBuiltin<”__amdil_dummy_intr1”>,
is there really a space between "intr" and "1"?
Ciao, Duncan.