target/ppc: Handle AIL=0 in ppc_excp_vector_offset
commitbc5fdfc0a1377418902e215f8d7be00e46b9ac9c
authorFabiano Rosas <farosas@linux.ibm.com>
Tue, 17 Dec 2019 14:25:12 +0000 (17 11:25 -0300)
committerDavid Gibson <david@gibson.dropbear.id.au>
Wed, 8 Jan 2020 00:01:59 +0000 (8 11:01 +1100)
tree559b9560e6c4417acf4a9117d0dd1ab8b656f640
parent38fc68a4895803f0841b46f1d01113cdcd36541d
target/ppc: Handle AIL=0 in ppc_excp_vector_offset

The exception vector offset calculation was moved into a function but
the case when AIL=0 was not checked.

The reason we got away with this is that the sole caller of
ppc_excp_vector_offset checks the AIL before calling the function:

    /* Handle AIL */
    if (ail) {
        ...
        vector |= ppc_excp_vector_offset(cs, ail);
    }

Fixes: 2586a4d7a0 ("target/ppc: Move exception vector offset computation into a function")
Signed-off-by: Fabiano Rosas <farosas@linux.ibm.com>
Message-Id: <20191217142512.574075-1-farosas@linux.ibm.com>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
target/ppc/excp_helper.c