diff options
author | Kenneth Graunke <[email protected]> | 2014-02-23 16:34:04 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2014-02-26 02:16:56 -0800 |
commit | ac0a8b9540b29eb6faa55e4c77ba8fa99478884a (patch) | |
tree | 51825bdd208e8a7917e4738e8b809b28ee78d067 /src/glsl/ir_optimization.h | |
parent | 2fdea48e21c48f4543e1239787d34cf84ab96959 (diff) |
glsl: Delete LRP_TO_ARITH lowering pass flag.
Tt's kind of a trap---calling do_common_optimization() after
lower_instructions() may cause opt_algebraic() to reintroduce
ir_triop_lrp expressions that were lowered, effectively defeating the
point. Because of this, nobody uses it.
v2: Delete more code (caught by Ian Romanick).
Cc: "10.1" <[email protected]>
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Acked-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/glsl/ir_optimization.h')
-rw-r--r-- | src/glsl/ir_optimization.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/glsl/ir_optimization.h b/src/glsl/ir_optimization.h index 24d019b718e..5f4a2f4051c 100644 --- a/src/glsl/ir_optimization.h +++ b/src/glsl/ir_optimization.h @@ -36,9 +36,8 @@ #define LOG_TO_LOG2 0x10 #define MOD_TO_FRACT 0x20 #define INT_DIV_TO_MUL_RCP 0x40 -#define LRP_TO_ARITH 0x80 -#define BITFIELD_INSERT_TO_BFM_BFI 0x100 -#define LDEXP_TO_ARITH 0x200 +#define BITFIELD_INSERT_TO_BFM_BFI 0x80 +#define LDEXP_TO_ARITH 0x100 /** * \see class lower_packing_builtins_visitor |