Skip to content

clc: remove check for null pointer that cannot be true in llvm_mod_to_spirv

Dylan Baker requested to merge dbaker/mesa:submit/clc-non-null-check into main

What does this MR do and why?

clc: remove check for null pointer that cannot be true in llvm_mod_to_spirv

Snce the *args parameter was added it's assumed to be non-null. If it is
null then the function is going off to UB land. As such, a later check
added for args being NULL is useless, and confuses coverity.

fixes: 3a752256f54ce839f6e75d508df51eba6464ef77

Merge request reports