Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1016)

Unified Diff: gcc/gcc/config/i386/i386.md

Issue 3050027: [gcc] Fix nacl64_as warnings: destination and source are swapped in cmpsX... (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/nacl-toolchain.git
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gcc/gcc/config/i386/i386.md
diff --git a/gcc/gcc/config/i386/i386.md b/gcc/gcc/config/i386/i386.md
index 31ce5751db3a036b184a622099b907ab93c233ce..7155cbc74834bcb125228287ec3eb0b2ada7e9c2 100644
--- a/gcc/gcc/config/i386/i386.md
+++ b/gcc/gcc/config/i386/i386.md
@@ -20244,7 +20244,7 @@
{
if (TARGET_NACL)
{
- return "repz cmpsb %%nacl:(%%rsi),%%nacl:(%%rdi),%%r15"
+ return "repz cmpsb %%nacl:(%%rdi),%%nacl:(%%rsi),%%r15"
"\nmovl\t%%esi, %%esi\nmovl\t%%edi, %%edi";
}
else
@@ -20307,7 +20307,7 @@
{
if (TARGET_NACL)
{
- return "repz cmpsb %%nacl:(%%rsi),%%nacl:(%%rdi),%%r15"
+ return "repz cmpsb %%nacl:(%%rdi),%%nacl:(%%rsi),%%r15"
"\nmovl\t%%esi, %%esi\nmovl\t%%edi, %%edi";
}
else
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698