search for: int_amdil_dummy_intr2

Displaying 1 result from an estimated 1 matches for "int_amdil_dummy_intr2".

Did you mean: int_amdil_dummy_intr
2011 Apr 13
2
[LLVMdev] weird issue with target intrinsics
...ith 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 comment out these intrinsic, the other intrinsic is selected correctly. Any ideas on how to...