diff options
author | Eric Anholt <[email protected]> | 2016-08-29 11:23:35 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2016-08-31 17:06:54 -0700 |
commit | 509e2dbc105a04e8bc6ed292b921cbe27957a779 (patch) | |
tree | a561dd0a65b737214db1cc29328c47fe3ddefb48 | |
parent | c87e8c851526123aa5edb09b20fa50e02d4398f5 (diff) |
vc4: Add missing break statement.
This opcode isn't used yet, so it didn't affect anything. Caught by
Coverity, reported to me by imirkin.
-rw-r--r-- | src/gallium/drivers/vc4/vc4_qpu_emit.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/vc4/vc4_qpu_emit.c b/src/gallium/drivers/vc4/vc4_qpu_emit.c index 79588b3f51c..4d371c06b87 100644 --- a/src/gallium/drivers/vc4/vc4_qpu_emit.c +++ b/src/gallium/drivers/vc4/vc4_qpu_emit.c @@ -434,6 +434,7 @@ vc4_generate_code_block(struct vc4_compile *c, case QOP_LOAD_IMM_I2: queue(block, qpu_load_imm_i2(dst, qinst->src[0].index)); + break; case QOP_ROT_MUL: /* Rotation at the hardware level occurs on the inputs |