From: Connor Abbott Date: Sat, 16 Aug 2014 00:12:06 +0000 (-0700) Subject: glsl/linker: pass through the is_intrinsic flag X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=06ef6315732cf89d20a831bd5b4861550769276f;p=mesa.git glsl/linker: pass through the is_intrinsic flag This flag was set to true for the atomic counter intrinsics, but it never got plumbed through the linker, so by the time it got to the backends it would always be set to the false. The current i965 backend code doesn't use is_intrinsic, so this should not change any existing code, but it's useful for codepaths that want to distinguish between intrinsics and non-intrinsics without using strcmp. Reviewed-by: Matt Turner Signed-off-by: Connor Abbott --- diff --git a/src/glsl/link_functions.cpp b/src/glsl/link_functions.cpp index f86aec689b1..d62c16853bc 100644 --- a/src/glsl/link_functions.cpp +++ b/src/glsl/link_functions.cpp @@ -154,6 +154,8 @@ public: linked_sig->replace_parameters(&formal_parameters); + linked_sig->is_intrinsic = sig->is_intrinsic; + if (sig->is_defined) { foreach_in_list(const ir_instruction, original, &sig->body) { ir_instruction *copy = original->clone(linked, ht);