diff options
author | meissner <meissner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-10-15 17:42:05 +0000 |
---|---|---|
committer | meissner <meissner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-10-15 17:42:05 +0000 |
commit | 7e0713b19861cf2d5b2a216a5f37e1d486109b76 (patch) | |
tree | 5a6ace72e7cb1c4c33366822e3836c93b74e3f78 /gcc/rtl.def | |
parent | 9f092e58e1ca92f1851075265ba3dca3884ac648 (diff) | |
download | gcc-7e0713b19861cf2d5b2a216a5f37e1d486109b76.tar.gz |
Add fma support
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@165515 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtl.def')
-rw-r--r-- | gcc/rtl.def | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/rtl.def b/gcc/rtl.def index 282cca6be26..6e2aa8beede 100644 --- a/gcc/rtl.def +++ b/gcc/rtl.def @@ -706,6 +706,9 @@ DEF_RTL_EXPR(SS_TRUNCATE, "ss_truncate", "e", RTX_UNARY) /* Unsigned saturating truncate. */ DEF_RTL_EXPR(US_TRUNCATE, "us_truncate", "e", RTX_UNARY) +/* Floating point multiply/add combined instruction. */ +DEF_RTL_EXPR(FMA, "fma", "eee", RTX_TERNARY) + /* Information about the variable and its location. */ /* Changed 'te' to 'tei'; the 'i' field is for recording initialization status of variables. */ |