i965/fs: Disable fs_inst assignment operator.

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>
This commit is contained in:
Matt Turner 2014-02-20 09:14:40 -08:00
parent 6d3a15223a
commit a391e99b23
1 changed files with 2 additions and 0 deletions

View 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)