llvmpipe: Detect typos in LLVM intrinsics early.

This commit is contained in:
José Fonseca 2009-08-16 21:00:16 +01:00
parent 1aede69d3a
commit 58f20b2b65

View file

@ -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, "");
}