http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58502
--- Comment #1 from Volker Reichelt <reichelt at gcc dot gnu.org> --- Well, the above code snippet only fails on trunk (GCC 4.9.0), but the testcase below fails since GCC 4.8.0: ==================================================== int foo(); int foo() __attribute__((target("default"))); int foo() __attribute__((target("arch=core2"))); int i = foo(); ====================================================