i965/fs: Disable fs_inst assignment operator.
authorMatt Turner <mattst88@gmail.com>
Thu, 20 Feb 2014 17:14:40 +0000 (09:14 -0800)
committerMatt Turner <mattst88@gmail.com>
Sun, 1 Jun 2014 20:29:23 +0000 (13:29 -0700)
The fs_reg src array is going to turn into a pointer and we'd rather not
consider the implications of shallow copying fs_insts.

Reviewed-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
Reviewed-by: Chris Forbes <chrisf@ijw.co.nz>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
src/mesa/drivers/dri/i965/brw_fs.h

index bda233c..e079842 100644 (file)
@@ -185,6 +185,8 @@ public:
 };
 
 class fs_inst : public backend_instruction {
+   fs_inst &operator=(const fs_inst &);
+
 public:
    DECLARE_RALLOC_CXX_OPERATORS(fs_inst)