Commit 38df2baf by Tristan Gingold

stack-usage-1.c (SIZE): Adjust for avr.

2010-09-29  Tristan Gingold  <gingold@adacore.com>

	* gcc.dg/stack-usage-1.c (SIZE): Adjust for avr.

From-SVN: r164716
parent 1973201f
2010-09-29 Tristan Gingold <gingold@adacore.com>
* gcc.dg/stack-usage-1.c (SIZE): Adjust for avr.
2010-09-29 Nicola Pero <nicola.pero@meta-innovation.com> 2010-09-29 Nicola Pero <nicola.pero@meta-innovation.com>
* objc.dg/keywords-1.m: New test. * objc.dg/keywords-1.m: New test.
...@@ -77,7 +81,7 @@ ...@@ -77,7 +81,7 @@
Radar 4175534 Radar 4175534
* obj-c++.dg/method-22.mm: New. * obj-c++.dg/method-22.mm: New.
2010-09-27 Jason Merrill <jason@redhat.com> 2010-09-27 Jason Merrill <jason@redhat.com>
* g++.dg/cpp0x/rv-lvalue-req.C: New. * g++.dg/cpp0x/rv-lvalue-req.C: New.
...@@ -105,8 +109,8 @@ ...@@ -105,8 +109,8 @@
PR objc/45763 PR objc/45763
* objc.dg/encode-1.m: Execute the test with the GNU runtime as * objc.dg/encode-1.m: Execute the test with the GNU runtime as
well. well.
2010-09-27 Nicola Pero <nicola.pero@meta-innovation.com> 2010-09-27 Nicola Pero <nicola.pero@meta-innovation.com>
PR objc/25450 PR objc/25450
* objc.dg/encode-3.m: Updated for fix of encoding of enums. * objc.dg/encode-3.m: Updated for fix of encoding of enums.
......
...@@ -28,6 +28,8 @@ ...@@ -28,6 +28,8 @@
#elif defined (__powerpc__) || defined (__PPC__) || defined (__ppc__) \ #elif defined (__powerpc__) || defined (__PPC__) || defined (__ppc__) \
|| defined (__POWERPC__) || defined (PPC) || defined (_IBMR2) || defined (__POWERPC__) || defined (PPC) || defined (_IBMR2)
# define SIZE 240 # define SIZE 240
#elif defined (__AVR__)
# define SIZE 254
#else #else
# define SIZE 256 # define SIZE 256
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment