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

Unified Diff: gcc/gcc/config/i386/gas.h

Issue 3050029: [gcc] GCC 4.5.0=>4.5.1 (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 | « gcc/gcc/config/i386/driver-i386.c ('k') | gcc/gcc/config/i386/gmon-sol2.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gcc/gcc/config/i386/gas.h
diff --git a/gcc/gcc/config/i386/gas.h b/gcc/gcc/config/i386/gas.h
index f3d43b31ea2392497ac9fff9ca0d177c590d71c4..4c7c9d1ac62d18f60798dfd3cfe54e8ce450e03b 100644
--- a/gcc/gcc/config/i386/gas.h
+++ b/gcc/gcc/config/i386/gas.h
@@ -95,12 +95,12 @@ along with GCC; see the file COPYING3. If not see
{ \
if ((PTR)[3] == 'z') \
{ \
- fprintf (STREAM, "repe"); \
+ fputs ("repe", (STREAM)); \
(PTR) += 4; \
} \
else if ((PTR)[3] == 'n' && (PTR)[4] == 'z') \
{ \
- fprintf (STREAM, "repne"); \
+ fputs ("repne", (STREAM)); \
(PTR) += 5; \
} \
} \
@@ -117,9 +117,6 @@ along with GCC; see the file COPYING3. If not see
#undef SHIFT_DOUBLE_OMITS_COUNT
#define SHIFT_DOUBLE_OMITS_COUNT 0
-/* Print opcodes the way that GAS expects them. */
-#define GAS_MNEMONICS 1
-
/* The comment-starter string as GAS expects it. */
#undef ASM_COMMENT_START
#define ASM_COMMENT_START "#"
« no previous file with comments | « gcc/gcc/config/i386/driver-i386.c ('k') | gcc/gcc/config/i386/gmon-sol2.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698