OSDN Git Service

2005-12-22 Dale Johannesen <dalej@apple.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / i386 / mul.c
1 /* { dg-do compile { target i?86-*-* x86_64-*-* } } */
2 /* { dg-options "-O2 -march=k8" } */
3 /* { dg-final { scan-assembler "and\[^\\n\]*magic" } } */
4
5 /* Should be done as "andw $32767, magic".  */
6 static unsigned short magic;
7 void t(void)
8 {
9         magic%=(unsigned short)0x8000U;
10 }