projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ad9889d
)
* v850-opc.c (two): Get order of words correct.
author
Jeff Law
<law@redhat.com>
Fri, 23 Aug 1996 18:17:31 +0000
(18:17 +0000)
committer
Jeff Law
<law@redhat.com>
Fri, 23 Aug 1996 18:17:31 +0000
(18:17 +0000)
opcodes/ChangeLog
patch
|
blob
|
history
opcodes/v850-opc.c
patch
|
blob
|
history
diff --git
a/opcodes/ChangeLog
b/opcodes/ChangeLog
index 704b513057316e3a3a4b16ce7bf3a51f9e248c56..e8cf4843ec5cff9f9123def08f0270555e4cf964 100644
(file)
--- a/
opcodes/ChangeLog
+++ b/
opcodes/ChangeLog
@@
-1,6
+1,8
@@
start-sanitize-v850
Fri Aug 23 00:27:01 1996 Jeffrey A Law (law@cygnus.com)
+ * v850-opc.c (two): Get order of words correct.
+
* v850-opc.c (v850_operands): I16 inserts at offset 16!
* v850-opc.c (v850_operands): Add "SR1" and "SR2" for system
diff --git
a/opcodes/v850-opc.c
b/opcodes/v850-opc.c
index 39cb57ba151d1417998806ff191088aee5c963d2..87e2452770f599f0173e589d9eb2319150f95e94 100644
(file)
--- a/
opcodes/v850-opc.c
+++ b/
opcodes/v850-opc.c
@@
-17,7
+17,7
@@
static long extract_d9 PARAMS ((unsigned long, int *));
#define one(x) ((unsigned int) (x))
/* two-word opcodes */
-#define two(x,y) ((unsigned int) (
y) | ((unsigned int) (x
) << 16))
+#define two(x,y) ((unsigned int) (
x) | ((unsigned int) (y
) << 16))
\f