diff options
author | Stefan Weil <sw@weilnetz.de> | 2014-03-16 14:49:54 +0100 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2014-03-19 18:35:52 +0100 |
commit | cfd54a0409c92cbf3b2e6af39ce44a13f6940dd0 (patch) | |
tree | 5aa89466df235974434a0956b3dbd82e3cb6bed4 /target-ppc/int_helper.c | |
parent | 4c8821d13405056776d0255bb78925dac91996c3 (diff) |
target-ppc: Add missing 'static' and 'const' attributes
This fixes warnings from the static code analysis (smatch).
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'target-ppc/int_helper.c')
-rw-r--r-- | target-ppc/int_helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-ppc/int_helper.c b/target-ppc/int_helper.c index e14e304457..18b54f060a 100644 --- a/target-ppc/int_helper.c +++ b/target-ppc/int_helper.c @@ -1075,7 +1075,7 @@ void helper_vbpermq(ppc_avr_t *r, ppc_avr_t *a, ppc_avr_t *b) #undef VBPERMQ_INDEX #undef VBPERMQ_DW -uint64_t VGBBD_MASKS[256] = { +static const uint64_t VGBBD_MASKS[256] = { 0x0000000000000000ull, /* 00 */ 0x0000000000000080ull, /* 01 */ 0x0000000000008000ull, /* 02 */ |