diff options
author | Georg-Johann Lay <avr@gjlay.de> | 2012-08-24 13:01:54 +0000 |
---|---|---|
committer | Georg-Johann Lay <gjl@gcc.gnu.org> | 2012-08-24 13:01:54 +0000 |
commit | 4aeaaca35f996962066bf331579a6f754263cb25 (patch) | |
tree | 5b11b0be102859bfb338d89627a41ca7eaaae138 /libgcc | |
parent | 2eb712b4020785ab8784e71edd29969e2d38d256 (diff) | |
download | gcc-4aeaaca35f996962066bf331579a6f754263cb25.zip gcc-4aeaaca35f996962066bf331579a6f754263cb25.tar.gz gcc-4aeaaca35f996962066bf331579a6f754263cb25.tar.bz2 |
re PR target/54222 ([avr] Implement fixed-point support)
PR target/54222
* config/avr/t-avr (conv_X): Rename to func_X.
From-SVN: r190646
Diffstat (limited to 'libgcc')
-rw-r--r-- | libgcc/ChangeLog | 5 | ||||
-rw-r--r-- | libgcc/config/avr/t-avr | 10 |
2 files changed, 10 insertions, 5 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index 60f1949..0ea0ed3 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,6 +1,11 @@ 2012-08-24 Georg-Johann Lay <avr@gjlay.de> PR target/54222 + * config/avr/t-avr (conv_X): Rename to func_X. + +2012-08-24 Georg-Johann Lay <avr@gjlay.de> + + PR target/54222 * config/avr/lib1funcs-fixed.S: New file. * config/avr/lib1funcs.S: Include it. Undefine some divmodsi after they are used. diff --git a/libgcc/config/avr/t-avr b/libgcc/config/avr/t-avr index 6f783cd..7496133 100644 --- a/libgcc/config/avr/t-avr +++ b/libgcc/config/avr/t-avr @@ -105,7 +105,7 @@ endif # Filter out supported conversions from fixed-bit.c conv_XY=$(conv)$(mode1)$(mode2) -conv_X=$(conv)$(mode) +func_X=$(func)$(mode) # Conversions supported by the compiler @@ -140,9 +140,9 @@ LIB2FUNCS_EXCLUDE += \ allfix_modes = QQ UQQ HQ UHQ HA UHA SQ USQ SA USA DA UDA DQ UDQ TQ UTQ TA UTA LIB2FUNCS_EXCLUDE += \ - $(foreach conv,_add _sub,\ - $(foreach mode,$(allfix_modes),$(conv_X)3)) + $(foreach func,_add _sub,\ + $(foreach mode,$(allfix_modes),$(func_X)3)) LIB2FUNCS_EXCLUDE += \ - $(foreach conv,_lshr _ashl _ashr _cmp,\ - $(foreach mode,$(allfix_modes),$(conv_X))) + $(foreach func,_lshr _ashl _ashr _cmp,\ + $(foreach mode,$(allfix_modes),$(func_X))) |