]> gcc.gnu.org Git - gcc.git/commitdiff
(SHIFT_DOUBLE_OMITS_COUNT): new macro.
authorStan Cox <coxs@gnu.org>
Sun, 9 Jun 1996 02:13:52 +0000 (02:13 +0000)
committerStan Cox <coxs@gnu.org>
Sun, 9 Jun 1996 02:13:52 +0000 (02:13 +0000)
From-SVN: r12251

gcc/config/i386/unix.h

index 237ff9a64236d0863470b1121ab88db112369d88..bad6970037f2d84d3bf2f8ea6875393494d73d77 100644 (file)
@@ -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).
This page took 0.060152 seconds and 5 git commands to generate.