[binutils-gdb] Remove the unused cpu_flags_set
H.J.Lu
hjl@sourceware.org
Fri Mar 27 16:38:00 GMT 2015
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=e04de5e3b55b9f481ff2b9939995301ba6b1c748
commit e04de5e3b55b9f481ff2b9939995301ba6b1c748
Author: H.J. Lu <hjl.tools@gmail.com>
Date: Fri Mar 27 09:29:05 2015 -0700
Remove the unused cpu_flags_set
* config/tc-i386.c (cpu_flags_set): Removed.
Diff:
---
gas/ChangeLog | 4 ++++
gas/config/tc-i386.c | 17 -----------------
2 files changed, 4 insertions(+), 17 deletions(-)
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 4a43a66..e4623e6 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,7 @@
+2015-03-27 H.J. Lu <hongjiu.lu@intel.com>
+
+ * config/tc-i386.c (cpu_flags_set): Removed.
+
2015-03-25 Renlin Li <renlin.li@arm.com>
* 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 d710216..8266134 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)
More information about the Binutils-cvs
mailing list