summaryrefslogtreecommitdiff
path: root/cgiwas.c
diff options
context:
space:
mode:
authorJohn van Groningen2005-10-06 09:37:28 +0000
committerJohn van Groningen2005-10-06 09:37:28 +0000
commit9dfa57d8b8d2466a0fcef6fd28790d317932633e (patch)
treee59f6c3bdc40739558bd4730a4f78049ce1b8c5e /cgiwas.c
parenttest for GNEG in mark_graph_1 for all platforms (diff)
use new apply and new descriptors for IA32,
add addLU and subLU instructions for IA32
Diffstat (limited to 'cgiwas.c')
-rw-r--r--cgiwas.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/cgiwas.c b/cgiwas.c
index 680a798..cd84ff0 100644
--- a/cgiwas.c
+++ b/cgiwas.c
@@ -3249,6 +3249,12 @@ static void w_as_instructions (register struct instruction *instruction)
case INOT:
w_as_monadic_instruction (instruction,intel_asm ? "not" : "notl");
break;
+ case IADC:
+ w_as_dyadic_instruction (instruction,intel_asm ? "adc" : "adcl");
+ break;
+ case ISBB:
+ w_as_dyadic_instruction (instruction,intel_asm ? "sbb" : "sbbl");
+ break;
case IMULUD:
w_as_mulud_instruction (instruction);
break;