mirror of git://gcc.gnu.org/git/gcc.git
crtfastmath.c (set_fast_math): Add 'nomips16' attribute.
2012-08-29 Chung-Lin Tang <cltang@codesourcery.com> libgcc/ * config/mips/crtfastmath.c (set_fast_math): Add 'nomips16' attribute. From-SVN: r190773
This commit is contained in:
parent
c24dbebb44
commit
867a834534
|
|
@ -1,3 +1,8 @@
|
||||||
|
2012-08-29 Chung-Lin Tang <cltang@codesourcery.com>
|
||||||
|
|
||||||
|
* config/mips/crtfastmath.c (set_fast_math): Add 'nomips16'
|
||||||
|
attribute.
|
||||||
|
|
||||||
2012-08-24 Georg-Johann Lay <avr@gjlay.de>
|
2012-08-24 Georg-Johann Lay <avr@gjlay.de>
|
||||||
|
|
||||||
PR target/54222
|
PR target/54222
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@
|
||||||
#define _FPU_GETCW(cw) __asm__ ("cfc1 %0,$31" : "=r" (cw))
|
#define _FPU_GETCW(cw) __asm__ ("cfc1 %0,$31" : "=r" (cw))
|
||||||
#define _FPU_SETCW(cw) __asm__ ("ctc1 %0,$31" : : "r" (cw))
|
#define _FPU_SETCW(cw) __asm__ ("ctc1 %0,$31" : : "r" (cw))
|
||||||
|
|
||||||
static void __attribute__((constructor))
|
static void __attribute__((constructor,nomips16))
|
||||||
set_fast_math (void)
|
set_fast_math (void)
|
||||||
{
|
{
|
||||||
unsigned int fcr;
|
unsigned int fcr;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue