mirror of https://github.com/xqemu/xqemu.git
ARM back-end: Fix encode_imm
the encode_imm function in tcg/arm/tcg-target.c lacks shift declaration. Laurent Signed-off-by: Laurent Desnogues <laurent.desnogues@gmail.com> Signed-off-by: Andrzej Zaborowski <andrew.zaborowski@intel.com>
This commit is contained in:
parent
0d6b0b1d81
commit
4e6f6d4c20
|
@ -188,6 +188,8 @@ static inline uint32_t rotl(uint32_t val, int n)
|
||||||
right-rotated by an even amount between 0 and 30. */
|
right-rotated by an even amount between 0 and 30. */
|
||||||
static inline int encode_imm(uint32_t imm)
|
static inline int encode_imm(uint32_t imm)
|
||||||
{
|
{
|
||||||
|
int shift;
|
||||||
|
|
||||||
/* simple case, only lower bits */
|
/* simple case, only lower bits */
|
||||||
if ((imm & ~0xff) == 0)
|
if ((imm & ~0xff) == 0)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue