glsl: Remove ir_function_signature::_is_intrinsic field

text	   data	    bss	    dec	    hex	filename
6036491	 283160	  28608	6348259	 60dde3	lib64/i965_dri.so before
6036395	 283160	  28608	6348163	 60dd83	lib64/i965_dri.so after

Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Acked-by: Ilia Mirkin <imirkin@alum.mit.edu>
This commit is contained in:
Ian Romanick
2016-08-31 18:42:34 -07:00
parent acfcc7bbfa
commit bb290b5679
6 changed files with 5 additions and 17 deletions

View File

@@ -1187,17 +1187,14 @@ public:
/** Whether or not this function signature is a built-in. */
bool is_builtin() const;
/** Whehter or not this function signautre is an intrinsic. */
inline bool is_intrinsic() const
{
return _is_intrinsic;
}
/**
* Whether or not this function is an intrinsic to be implemented
* by the driver.
*/
bool _is_intrinsic;
inline bool is_intrinsic() const
{
return intrinsic_id != ir_intrinsic_invalid;
}
/** Indentifier for this intrinsic. */
enum ir_intrinsic_id intrinsic_id;