intel/mi_builder: Re-order an initializer
authorJason Ekstrand <jason@jlekstrand.net>
Mon, 15 Apr 2019 20:39:22 +0000 (15:39 -0500)
committerJason Ekstrand <jason@jlekstrand.net>
Tue, 16 Apr 2019 17:07:15 +0000 (12:07 -0500)
The order doesn't matter in C99 but some C++ compilers seem to care.

Tested-by: Clayton Craft <clayton.a.craft@intel.com>
src/intel/common/gen_mi_builder.h

index a671269..bb817ce 100644 (file)
@@ -519,9 +519,9 @@ static inline uint32_t
 _gen_mi_pack_alu(uint32_t opcode, uint32_t operand1, uint32_t operand2)
 {
    struct GENX(MI_MATH_ALU_INSTRUCTION) instr = {
-      .ALUOpcode = opcode,
-      .Operand1 = operand1,
       .Operand2 = operand2,
+      .Operand1 = operand1,
+      .ALUOpcode = opcode,
    };
 
    uint32_t dw;