stringop-2.c: Fix ifdef __mips.
2015-06-11 Steve Ellcey <sellcey@imgtec.com> * gcc.dg/tree-prof/stringop-2.c: Fix ifdef __mips. From-SVN: r224394
This commit is contained in:
parent
2702245925
commit
91234054f7
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2015-06-11 Steve Ellcey <sellcey@imgtec.com>
|
||||||
|
|
||||||
|
* gcc.dg/tree-prof/stringop-2.c: Fix ifdef __mips.
|
||||||
|
|
||||||
2015-06-11 Paul Thomas <pault@gcc.gnu.org>
|
2015-06-11 Paul Thomas <pault@gcc.gnu.org>
|
||||||
|
|
||||||
PR fortran/66079
|
PR fortran/66079
|
||||||
|
|
|
@ -6,8 +6,9 @@ int max=10000;
|
||||||
#ifdef __mips
|
#ifdef __mips
|
||||||
/* We allow short memcpy()s for MIPS16. */
|
/* We allow short memcpy()s for MIPS16. */
|
||||||
int __attribute__((nomips16))
|
int __attribute__((nomips16))
|
||||||
#endif
|
#else
|
||||||
int
|
int
|
||||||
|
#endif
|
||||||
main()
|
main()
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
Loading…
Add table
Reference in a new issue