i965: Silence unused variable warning on non-debug builds.

Fixes this GCC warning.
brw_eu_emit.c: In function 'brw_math2':
brw_eu_emit.c:1189: warning: unused variable 'intel'
This commit is contained in:
Vinson Lee 2010-10-08 16:02:59 -07:00
parent 220c0834a4
commit 978ffa1d61

View file

@ -1190,6 +1190,7 @@ void brw_math2(struct brw_compile *p,
struct brw_instruction *insn = next_insn(p, BRW_OPCODE_MATH);
assert(intel->gen >= 6);
(void) intel;
/* Math is the same ISA format as other opcodes, except that CondModifier
* becomes FC[3:0] and ThreadCtrl becomes FC[5:4].