summaryrefslogtreecommitdiff
path: root/cgias.c
diff options
context:
space:
mode:
authorJohn van Groningen2008-12-18 14:53:40 +0000
committerJohn van Groningen2008-12-18 14:53:40 +0000
commit4757ecd891286aaaf4381e652a682b362453560e (patch)
treed7d1f086846107df983921469ef7c5f99e6f9919 /cgias.c
parentfix compare of constant of more than 32 bits (on 64 bit platforms) (diff)
rename IMOD to IREM
Diffstat (limited to 'cgias.c')
-rw-r--r--cgias.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cgias.c b/cgias.c
index 8260661..21faff2 100644
--- a/cgias.c
+++ b/cgias.c
@@ -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: