diff options
-rw-r--r-- | cgaas.c | 2 | ||||
-rw-r--r-- | cgas.c | 2 | ||||
-rw-r--r-- | cgawas.c | 2 | ||||
-rw-r--r-- | cgias.c | 6 | ||||
-rw-r--r-- | cgiconst.h | 2 | ||||
-rw-r--r-- | cgiwas.c | 2 | ||||
-rw-r--r-- | cgpas.c | 2 | ||||
-rw-r--r-- | cgpwas.c | 2 | ||||
-rw-r--r-- | cgsas.c | 2 | ||||
-rw-r--r-- | cgswas.c | 2 | ||||
-rw-r--r-- | cgwas.c | 2 |
11 files changed, 13 insertions, 13 deletions
@@ -4246,7 +4246,7 @@ static void as_instructions (struct instruction *instruction) case IDIVI: as_div_rem_i_instruction (instruction,0); break; - case IMOD: + case IREM: as_rem_instruction (instruction); break; case IREMI: @@ -3440,7 +3440,7 @@ static void write_instructions (struct instruction *instructions) case IDIV: as_div_instruction (instruction); break; - case IMOD: + case IREM: as_mod_instruction (instruction); break; case IBMOVE: @@ -3072,7 +3072,7 @@ static void w_as_instructions (register struct instruction *instruction) case IDIVI: w_as_div_rem_i_instruction (instruction,0); break; - case IMOD: + case IREM: w_as_rem_instruction (instruction); break; case IREMI: @@ -2070,9 +2070,9 @@ static void as_parameter (int code1,int code2,struct parameter *parameter) } /* - From The PowerPC Compiler WriterÕs Guide, + From The PowerPC Compiler Writer's Guide, Warren, Henry S., Jr., IBM Research Report RC 18601 [1992]. Changing Division by a - Constant to Multiplication in TwoÕs Complement Arithmetic, (December 21), + Constant to Multiplication in Two's Complement Arithmetic, (December 21), Granlund, Torbjorn and Montgomery, Peter L. [1994]. SIGPLAN Notices, 29 (June), 61. */ @@ -4433,7 +4433,7 @@ static void as_instructions (struct instruction *instruction) case IDIVU: as_div_instruction (instruction,1); break; - case IMOD: + case IREM: as_rem_instruction (instruction,0); break; case IREMI: @@ -20,7 +20,7 @@ enum { IFCMP, IFCOS, IFDIV, IFMUL, IFNEG, IFREM, IFSEQ, IFSGE, IFSGT, IFSIN, IFSLE, IFSLT, IFSNE, IFSUB, IFTAN, IFTST, IFMOVE, IFMOVEL, IJMP, IJSR, ILEA, - ILSL, ILSR, IMOD, IMOVE, IMOVEB, IMOVEDB, IMUL, + ILSL, ILSR, IREM, IMOVE, IMOVEB, IMOVEDB, IMUL, INEG, IOR, IRTS, ISCHEDULE, ISEQ, ISGE, ISGEU, ISGT, ISGTU, ISLE, ISLEU, ISLT, ISLTU, ISNE, ISNO, ISO, ISUB, ITST, IWORD @@ -3513,7 +3513,7 @@ static void w_as_instructions (register struct instruction *instruction) case IDIVU: w_as_div_instruction (instruction,1); break; - case IMOD: + case IREM: w_as_rem_instruction (instruction,0); break; case IREMI: @@ -2857,7 +2857,7 @@ static void write_instructions (struct instruction *instructions) case IDIVU: as_divu_instruction (instruction); break; - case IMOD: + case IREM: as_rem_instruction (instruction); break; case IAND: @@ -3225,7 +3225,7 @@ static void w_as_instructions (register struct instruction *instruction) case IDIVU: w_as_divu_instruction (instruction); break; - case IMOD: + case IREM: w_as_rem_instruction (instruction); break; case IAND: @@ -1821,7 +1821,7 @@ static void as_instructions (register struct instruction *instruction) case IDIV: w_as_mul_or_div_instruction (instruction,dot_div_label); break; - case IMOD: + case IREM: w_as_mod_instruction (instruction); break; case IAND: @@ -2113,7 +2113,7 @@ static void w_as_instructions (register struct instruction *instruction) case IDIV: w_as_mul_or_div_instruction (instruction,".div"); break; - case IMOD: + case IREM: w_as_mod_instruction (instruction); break; case IAND: @@ -1137,7 +1137,7 @@ static void w_as_instructions (register struct instruction *instruction) case IEXG: w_as_dyadic_instruction (instruction,"exg"); break; - case IMOD: + case IREM: w_as_mod_instruction (instruction); break; case IMOVEM: |