From 5476c289baecbbead2d6af20df09290a965b9b7d Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Wed, 2 Mar 1994 00:30:45 +0000 Subject: (TARGET_SOFT_FLOAT): Define. (TARGET_SWITCHES): Add -msoft-float. From-SVN: r6687 --- gcc/config/a29k/a29k.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'gcc') 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 -- cgit v1.1