summaryrefslogtreecommitdiff
path: root/gcc/config/i386/unix.h
diff options
context:
space:
mode:
authorcoxs <coxs@138bc75d-0d04-0410-961f-82ee72b054a4>1996-06-09 02:13:52 +0000
committercoxs <coxs@138bc75d-0d04-0410-961f-82ee72b054a4>1996-06-09 02:13:52 +0000
commit8903505fa47d98c7b685a2e32ecb0642d67574a6 (patch)
tree3c05e1e6875e3e180335897fd29ee722e6fa8066 /gcc/config/i386/unix.h
parent805be3f957513d0ad5bef394b17175bd841875f2 (diff)
downloadgcc-8903505fa47d98c7b685a2e32ecb0642d67574a6.tar.gz
(SHIFT_DOUBLE_OMITS_COUNT): new macro.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@12251 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/i386/unix.h')
-rw-r--r--gcc/config/i386/unix.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/config/i386/unix.h b/gcc/config/i386/unix.h
index 237ff9a6423..bad6970037f 100644
--- a/gcc/config/i386/unix.h
+++ b/gcc/config/i386/unix.h
@@ -45,7 +45,9 @@ Boston, MA 02111-1307, USA. */
count is in %cl. Some assemblers require %cl as an argument;
some don't. This macro controls what to do: by default, don't
print %cl. */
-#define AS3_SHIFT_DOUBLE(a,b,c,d) AS2 (a,c,d)
+#define SHIFT_DOUBLE_OMITS_COUNT 1
+#define AS3_SHIFT_DOUBLE(a,b,c,d) \
+ (SHIFT_DOUBLE_OMITS_COUNT ? AS2 (a,c,d) : AS3 (a,b,c,d))
/* Output the size-letter for an opcode.
CODE is the letter used in an operand spec (L, B, W, S or Q).