Commit 4a0c473d by Joseph Myers Committed by Joseph Myers

target-supports.exp (check_effective_target_arm_thumb1_ok): New.

	* lib/target-supports.exp (check_effective_target_arm_thumb1_ok):
	New.
	* g++.dg/inherit/thunk8.C: Use it.

From-SVN: r138143
parent 7ad8d488
2008-07-25 Joseph Myers <joseph@codesourcery.com>
* lib/target-supports.exp (check_effective_target_arm_thumb1_ok):
New.
* g++.dg/inherit/thunk8.C: Use it.
2008-07-24 Jan Hubicka <jh@suse.cz> 2008-07-24 Jan Hubicka <jh@suse.cz>
* gcc.dg/winline-4.c: Remove. * gcc.dg/winline-4.c: Remove.
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
Make sure that won't happen anymore. */ Make sure that won't happen anymore. */
/* { dg-do compile } */ /* { dg-do compile } */
/* { dg-require-effective-target arm32 } */ /* { dg-require-effective-target arm_thumb1_ok } */
/* { dg-options "-mthumb -fPIC" } */ /* { dg-options "-mthumb -fPIC" } */
struct A { struct A {
......
...@@ -1249,6 +1249,17 @@ proc check_effective_target_arm_neon_ok { } { ...@@ -1249,6 +1249,17 @@ proc check_effective_target_arm_neon_ok { } {
} }
} }
# Return 1 is this is an ARM target where -mthumb causes Thumb-1 to be
# used.
proc check_effective_target_arm_thumb1_ok { } {
return [check_no_compiler_messages arm_thumb1_ok assembly {
#if !defined(__arm__) || !defined(__thumb__) || defined(__thumb2__)
#error FOO
#endif
} "-mthumb"]
}
# Return 1 if the target supports executing NEON instructions, 0 # Return 1 if the target supports executing NEON instructions, 0
# otherwise. Cache the result. # otherwise. Cache the result.
......
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