(TARGET_MULTM): New #define.
(TARGET_SWITCHES): Recognize "-mno-multm". From-SVN: r8919
This commit is contained in:
parent
42d191605d
commit
f9151c433c
@ -90,6 +90,11 @@ extern int target_flags;
|
||||
|
||||
#define TARGET_SOFT_FLOAT (target_flags & 512)
|
||||
|
||||
/* This means that we should not emit the multm or mutmu instructions
|
||||
that some embedded systems' trap handlers don't support. */
|
||||
|
||||
#define TARGET_MULTM ((target_flags & 1024) == 0)
|
||||
|
||||
#define TARGET_SWITCHES \
|
||||
{ {"dw", 1}, \
|
||||
{"ndw", -1}, \
|
||||
@ -109,6 +114,7 @@ extern int target_flags;
|
||||
{"reuse-arg-regs", -256}, \
|
||||
{"no-reuse-arg-regs", 256}, \
|
||||
{"soft-float", 512}, \
|
||||
{"no-multm", 1024}, \
|
||||
{"", TARGET_DEFAULT}}
|
||||
|
||||
#define TARGET_DEFAULT 3
|
||||
|
Loading…
Reference in New Issue
Block a user