Hi! On Thu, Sep 29, 2011 at 03:14:40PM +0400, Michael Zolotukhin wrote: +/* { dg-options "-O2 -march=atom -mtune=atom -m64 -dp" } */
The testcases are wrong, -m64 or -m32 should never appear in dg-options, instead if the testcase is specific to -m64, it should be guarded with /* { dg-do compile { target lp64 } } */ resp. ia32 (or ilp32, depending on what exactly should be done for -mx32), if you have the same testcase for -m32 and -m64, but just want different scan-assembler for the two cases, then just guard the scan-assembler with lp64 resp. ia32/ilp32 target and add second one for the other target. Jakub