diff options
author | Ian Romanick <[email protected]> | 2019-06-06 11:00:40 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2019-07-08 11:30:11 -0700 |
commit | dd2dc7e707b580b2db9b941df1edeaf6f179da60 (patch) | |
tree | 7ae55477679f5e10e31d257bee8fa0d2c2b889ac /src/intel/compiler/brw_vec4.h | |
parent | 5450fd7a36469216ee0e075ed62f3d861e1bd2fa (diff) |
intel/vec4: Delete vec4_visitor::emit_lrp
Effectivley unused since dd7135d55d5 ("intel/compiler: Use the flrp
lowering pass for all stages on Gen4 and Gen5"). I had intended to
remove this code as part of that series, but I forgot.
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/intel/compiler/brw_vec4.h')
-rw-r--r-- | src/intel/compiler/brw_vec4.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/intel/compiler/brw_vec4.h b/src/intel/compiler/brw_vec4.h index 4b24e2a2db8..7b25ed61b62 100644 --- a/src/intel/compiler/brw_vec4.h +++ b/src/intel/compiler/brw_vec4.h @@ -236,9 +236,6 @@ public: vec4_instruction *emit_minmax(enum brw_conditional_mod conditionalmod, dst_reg dst, src_reg src0, src_reg src1); - vec4_instruction *emit_lrp(const dst_reg &dst, const src_reg &x, - const src_reg &y, const src_reg &a); - /** * Copy any live channel from \p src to the first channel of the * result. |