diff options
author | John van Groningen | 2005-10-06 09:37:28 +0000 |
---|---|---|
committer | John van Groningen | 2005-10-06 09:37:28 +0000 |
commit | 9dfa57d8b8d2466a0fcef6fd28790d317932633e (patch) | |
tree | e59f6c3bdc40739558bd4730a4f78049ce1b8c5e /cgcodep.h | |
parent | test 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 'cgcodep.h')
-rw-r--r-- | cgcodep.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -19,6 +19,9 @@ void code_absR (void); void code_acosR (VOID); void code_add_args (int source_offset,int n_arguments,int destination_offset); void code_addI (VOID); +#ifdef I486 +void code_addLU (VOID); +#endif #ifndef M68000 void code_addIo (VOID); #endif @@ -253,6 +256,9 @@ void code_sliceS (int source_offset,int destination_offset); void code_sqrtR (VOID); void code_stop_reducer (VOID); void code_subI (VOID); +#ifdef I486 +void code_subLU (VOID); +#endif #ifndef M68000 void code_subIo (VOID); #endif |