summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlejandro PiƱeiro <[email protected]>2017-07-01 08:08:20 +0200
committerJose Maria Casanova Crespo <[email protected]>2017-12-06 08:57:18 +0100
commita05b6f25bf4bfad7bb56d20aca0d2424607f9004 (patch)
tree13e604ddaef422bd85c8a295d28f407369a82deb
parent75a88d85671e03f6913dcc8bd288515e8ee8a99b (diff)
i965/fs: Remove BRW_REGISTER_TYPE_HF assert at get_exec_type
Note that we don't remove the assert at i965/vec4. At this point half float support is only for the scalar backend. Reviewed-by: Jason Ekstrand <[email protected]>
-rw-r--r--src/intel/compiler/brw_ir_fs.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/intel/compiler/brw_ir_fs.h b/src/intel/compiler/brw_ir_fs.h
index 0e7c55bcc03..cd603630a47 100644
--- a/src/intel/compiler/brw_ir_fs.h
+++ b/src/intel/compiler/brw_ir_fs.h
@@ -465,9 +465,6 @@ get_exec_type(const fs_inst *inst)
if (exec_type == BRW_REGISTER_TYPE_B)
exec_type = inst->dst.type;
- /* TODO: We need to handle half-float conversions. */
- assert(exec_type != BRW_REGISTER_TYPE_HF ||
- inst->dst.type == BRW_REGISTER_TYPE_HF);
assert(exec_type != BRW_REGISTER_TYPE_B);
return exec_type;