summaryrefslogtreecommitdiffstats
path: root/src/intel/compiler/brw_shader.h
diff options
context:
space:
mode:
authorMatt Turner <[email protected]>2018-09-06 11:15:55 -0700
committerMatt Turner <[email protected]>2018-10-16 17:48:17 -0700
commit58a51d0a67a00711c63ab28fcec7e1bb775c2097 (patch)
tree4d773180c658c94e30c5302af7df6e18a8f2e816 /src/intel/compiler/brw_shader.h
parentfcc70e4855c3bde3cadce9d0d1abf8da7106f643 (diff)
i965/fs: Add 64-bit int immediate support to dump_instructions()
Reviewed-by: Jason Ekstrand <[email protected]> Reviewed-by: Iago Toral Quiroga <[email protected]>
Diffstat (limited to 'src/intel/compiler/brw_shader.h')
-rw-r--r--src/intel/compiler/brw_shader.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/intel/compiler/brw_shader.h b/src/intel/compiler/brw_shader.h
index 7d97ddbd868..e1d598b8781 100644
--- a/src/intel/compiler/brw_shader.h
+++ b/src/intel/compiler/brw_shader.h
@@ -89,6 +89,8 @@ struct backend_reg : private brw_reg
using brw_reg::f;
using brw_reg::d;
using brw_reg::ud;
+ using brw_reg::d64;
+ using brw_reg::u64;
};
#endif