llvmpipe: Detect typos in LLVM intrinsics early.
This commit is contained in:
@@ -76,6 +76,13 @@ lp_build_intrinsic(LLVMBuilderRef builder,
|
||||
}
|
||||
assert(LLVMIsDeclaration(function));
|
||||
|
||||
if(name[0] == 'l' &&
|
||||
name[1] == 'l' &&
|
||||
name[2] == 'v' &&
|
||||
name[3] == 'm' &&
|
||||
name[4] == '.')
|
||||
assert(LLVMGetIntrinsicID(function));
|
||||
|
||||
return LLVMBuildCall(builder, function, args, num_args, "");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user