Hello! > Please don't use -m32/-m64 in testcases directly. > You should use > > /* { dg-do compile { target { ! ia32 } } } */ > > for 32bit insns and > > /* { dg-do compile { target { ia32 } } } */ > > for 64bit insns.
Also, there is no need to add -mtune if -march is already specified. -mtune will follow -march. To scan for the %xmm register, you don't have to add -dp to compile flags. -dp will also dump pattern name to file, so unless you are looking for specific pattern name, you should omit -dp. Uros.