Skip to content
Snippets Groups Projects
Commit 6b9dbea8 authored by pbrook's avatar pbrook
Browse files

2005-08-12 Paul Brook <paul@codesourcery.com>

	* config/arm/lib1funcs.asm: Error if __ARM_ARCH__ not set.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@103029 138bc75d-0d04-0410-961f-82ee72b054a4
parent 9a09ba70
No related branches found
No related tags found
No related merge requests found
2005-08-12 Paul Brook <paul@codesourcery.com>
* config/arm/lib1funcs.asm: Error if __ARM_ARCH__ not set.
2005-08-12 Andreas Krebbel <krebbel1@de.ibm.com> 2005-08-12 Andreas Krebbel <krebbel1@de.ibm.com>
* config/s390/predicates.md (setmem_operand): New predicate. * config/s390/predicates.md (setmem_operand): New predicate.
......
...@@ -87,6 +87,10 @@ Boston, MA 02110-1301, USA. */ ...@@ -87,6 +87,10 @@ Boston, MA 02110-1301, USA. */
# define __ARM_ARCH__ 6 # define __ARM_ARCH__ 6
#endif #endif
#ifndef __ARM_ARCH__
#error Unable to determine architecture.
#endif
/* How to return from a function call depends on the architecture variant. */ /* How to return from a function call depends on the architecture variant. */
#if (__ARM_ARCH__ > 4) || defined(__ARM_ARCH_4T__) #if (__ARM_ARCH__ > 4) || defined(__ARM_ARCH_4T__)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment