aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorDoug Evans <dje@gnu.org>1994-03-02 00:30:45 +0000
committerDoug Evans <dje@gnu.org>1994-03-02 00:30:45 +0000
commit5476c289baecbbead2d6af20df09290a965b9b7d (patch)
tree801f2b8275007a80e7440497e66d0d9c563c1e1b /gcc
parent3ae29d632c7f4737b2c4763fe6bce3c479bee241 (diff)
downloadgcc-5476c289baecbbead2d6af20df09290a965b9b7d.zip
gcc-5476c289baecbbead2d6af20df09290a965b9b7d.tar.gz
gcc-5476c289baecbbead2d6af20df09290a965b9b7d.tar.bz2
(TARGET_SOFT_FLOAT): Define.
(TARGET_SWITCHES): Add -msoft-float. From-SVN: r6687
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/a29k/a29k.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/config/a29k/a29k.h b/gcc/config/a29k/a29k.h
index 6e923e7..1b52749 100644
--- a/gcc/config/a29k/a29k.h
+++ b/gcc/config/a29k/a29k.h
@@ -85,6 +85,11 @@ extern int target_flags;
#define TARGET_NO_REUSE_ARGS (target_flags & 256)
+/* This means that neither builtin nor emulated float operations are
+ available, and that GCC should generate libcalls instead. */
+
+#define TARGET_SOFT_FLOAT (target_flags & 512)
+
#define TARGET_SWITCHES \
{ {"dw", 1}, \
{"ndw", -1}, \
@@ -103,6 +108,7 @@ extern int target_flags;
{"no-storem-bug", 128}, \
{"reuse-arg-regs", -256}, \
{"no-reuse-arg-regs", 256}, \
+ {"soft-float", 512}, \
{"", TARGET_DEFAULT}}
#define TARGET_DEFAULT 3