diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/intel/compiler/test_vec4_cmod_propagation.cpp | 6 | ||||
-rw-r--r-- | src/intel/compiler/test_vec4_copy_propagation.cpp | 6 | ||||
-rw-r--r-- | src/intel/compiler/test_vec4_register_coalesce.cpp | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/src/intel/compiler/test_vec4_cmod_propagation.cpp b/src/intel/compiler/test_vec4_cmod_propagation.cpp index 8430924de63..02c6f85321d 100644 --- a/src/intel/compiler/test_vec4_cmod_propagation.cpp +++ b/src/intel/compiler/test_vec4_cmod_propagation.cpp @@ -57,7 +57,7 @@ public: protected: /* Dummy implementation for pure virtual methods */ - virtual dst_reg *make_reg_for_system_value(int location) + virtual dst_reg *make_reg_for_system_value(int /* location */) { unreachable("Not reached"); } @@ -82,12 +82,12 @@ protected: unreachable("Not reached"); } - virtual void emit_urb_write_header(int mrf) + virtual void emit_urb_write_header(int /* mrf */) { unreachable("Not reached"); } - virtual vec4_instruction *emit_urb_write_opcode(bool complete) + virtual vec4_instruction *emit_urb_write_opcode(bool /* complete */) { unreachable("Not reached"); } diff --git a/src/intel/compiler/test_vec4_copy_propagation.cpp b/src/intel/compiler/test_vec4_copy_propagation.cpp index f4f91d8c8c7..5f3f3e525f2 100644 --- a/src/intel/compiler/test_vec4_copy_propagation.cpp +++ b/src/intel/compiler/test_vec4_copy_propagation.cpp @@ -54,7 +54,7 @@ public: } protected: - virtual dst_reg *make_reg_for_system_value(int location) + virtual dst_reg *make_reg_for_system_value(int /* location */) { unreachable("Not reached"); } @@ -74,12 +74,12 @@ protected: unreachable("Not reached"); } - virtual void emit_urb_write_header(int mrf) + virtual void emit_urb_write_header(int /* mrf */) { unreachable("Not reached"); } - virtual vec4_instruction *emit_urb_write_opcode(bool complete) + virtual vec4_instruction *emit_urb_write_opcode(bool /* complete */) { unreachable("Not reached"); } diff --git a/src/intel/compiler/test_vec4_register_coalesce.cpp b/src/intel/compiler/test_vec4_register_coalesce.cpp index a3dbb0a72e4..9636db2aca6 100644 --- a/src/intel/compiler/test_vec4_register_coalesce.cpp +++ b/src/intel/compiler/test_vec4_register_coalesce.cpp @@ -57,7 +57,7 @@ public: } protected: - virtual dst_reg *make_reg_for_system_value(int location) + virtual dst_reg *make_reg_for_system_value(int /* location */) { unreachable("Not reached"); } @@ -77,12 +77,12 @@ protected: unreachable("Not reached"); } - virtual void emit_urb_write_header(int mrf) + virtual void emit_urb_write_header(int /* mrf */) { unreachable("Not reached"); } - virtual vec4_instruction *emit_urb_write_opcode(bool complete) + virtual vec4_instruction *emit_urb_write_opcode(bool /* complete */) { unreachable("Not reached"); } |