From: H.J. Lu Date: Fri, 27 Mar 2015 16:29:05 +0000 (-0700) Subject: Remove the unused cpu_flags_set X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e04de5e3b55b9f481ff2b9939995301ba6b1c748;p=binutils-gdb.git Remove the unused cpu_flags_set * config/tc-i386.c (cpu_flags_set): Removed. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 4a43a6646c2..e4623e696f6 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2015-03-27 H.J. Lu + + * config/tc-i386.c (cpu_flags_set): Removed. + 2015-03-25 Renlin Li * config/tc-aarch64.c (mapping_state): Remove first MAP_DATA emitting diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index d7102163b77..8266134e19b 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -1382,23 +1382,6 @@ cpu_flags_all_zero (const union i386_cpu_flags *x) } } -static INLINE void -cpu_flags_set (union i386_cpu_flags *x, unsigned int v) -{ - switch (ARRAY_SIZE(x->array)) - { - case 3: - x->array[2] = v; - case 2: - x->array[1] = v; - case 1: - x->array[0] = v; - break; - default: - abort (); - } -} - static INLINE int cpu_flags_equal (const union i386_cpu_flags *x, const union i386_cpu_flags *y)