]> git.proxmox.com Git - mirror_qemu.git/commit
Use ARRAY_SIZE macro
authorBlue Swirl <blauwirbel@gmail.com>
Fri, 20 Aug 2010 21:03:24 +0000 (21:03 +0000)
committerBlue Swirl <blauwirbel@gmail.com>
Fri, 20 Aug 2010 21:03:24 +0000 (21:03 +0000)
commit66fe09eebb813b79e14279df11d723b433a973fb
tree5e2382045fa4be718fbb51aa9d2405dcc0b4813f
parentf143efa60c44c65c22aeeb04217f3501e3d04b22
Use ARRAY_SIZE macro

Replace array size calculations with ARRAY_SIZE macro.

Implemented with this Coccinelle semantic patch, adapted from
Linux kernel:
@@
type T;
T[] E;
@@

- (sizeof(E)/sizeof(*E))
+ ARRAY_SIZE(E)

@@
type T;
T[] E;
@@

- (sizeof(E)/sizeof(E[...]))
+ ARRAY_SIZE(E)

@@
type T;
T[] E;
@@

- (sizeof(E)/sizeof(T))
+ ARRAY_SIZE(E)

Some files (*-dis.c, tests/*) had to be filtered out.

Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
os-posix.c
target-i386/cpuid.c