Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Zwinkau
libfirm
Commits
41376099
Commit
41376099
authored
Jan 15, 2010
by
Michael Beck
Browse files
Fixed register order (arg, the comments were in ATT).
[r26965]
parent
ba4ac6da
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/ia32/ia32_emitter.c
View file @
41376099
...
...
@@ -2982,7 +2982,7 @@ static void bemit_setcc(const ir_node *node)
/* andb %>dreg, %<dreg */
bemit8
(
0x20
);
bemit_modrr8
(
REG_
HIGH
,
dreg
,
REG_
LOW
,
dreg
);
bemit_modrr8
(
REG_
LOW
,
dreg
,
REG_
HIGH
,
dreg
);
return
;
case
pn_Cmp_Ug
:
...
...
@@ -3000,7 +3000,7 @@ static void bemit_setcc(const ir_node *node)
/* orb %>dreg, %<dreg */
bemit8
(
0x08
);
bemit_modrr8
(
REG_
HIGH
,
dreg
,
REG_
LOW
,
dreg
);
bemit_modrr8
(
REG_
LOW
,
dreg
,
REG_
HIGH
,
dreg
);
return
;
default:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment