diff options
author | Tristan Gingold <gingold@gcc.gnu.org> | 2012-03-06 10:10:58 +0000 |
---|---|---|
committer | Tristan Gingold <gingold@gcc.gnu.org> | 2012-03-06 10:10:58 +0000 |
commit | a2ddaaf589ee3e335b953d09cbe2c53afb576653 (patch) | |
tree | 17951719196cd24b307ed00a204d37cfe308d589 | |
parent | 6bb485a36af85c406eed0136210fd25b97d9a01c (diff) | |
download | gcc-a2ddaaf589ee3e335b953d09cbe2c53afb576653.tar.gz |
t-vmsnative (version): Define.
2012-03-06 Tristan Gingold <gingold@adacore.com>
* config/vms/t-vmsnative (version): Define.
* config/vms/t-vms (STMP_FIXPROTO, STMP_FIXINC, version): Remove.
From-SVN: r184982
-rw-r--r-- | gcc/ChangeLog | 11 | ||||
-rw-r--r-- | gcc/config/vms/t-vms | 5 | ||||
-rw-r--r-- | gcc/config/vms/t-vmsnative | 5 |
3 files changed, 15 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 14f0040a949..f541b9eab90 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,10 +1,15 @@ +2012-03-06 Tristan Gingold <gingold@adacore.com> + + * config/vms/t-vmsnative (version): Define. + * config/vms/t-vms (STMP_FIXPROTO, STMP_FIXINC, version): Remove. + 2012-03-06 Andrey Belevantsev <abel@ispras.ru> PR rtl-optimization/52250 * sel-sched-ir.c (maybe_tidy_empty_bb): Try harder to find a bb to put note list into. Unconditionally call move_bb_info. (move_bb_info): Do not assert the blocks being in the same region, - just drop the note list if they are not. + just drop the note list if they are not. 2012-03-06 Oleg Endo <olegendo@gcc.gnu.org> @@ -984,6 +989,10 @@ * gimple-fold.c (gimplify_and_update_call_from_tree): Add vdef also to non-pure/const call stmts in the sequence. +2012-02-21 Tristan Gingold <gingold@adacore.com> + + * config/vms/vms-ld.c (main): Fix IDENTIFICATION padding. + 2012-02-20 David S. Miller <davem@davemloft.net> * config/sparc/sparc.md (load_pcrel_sym<P:mode>): Explain why we diff --git a/gcc/config/vms/t-vms b/gcc/config/vms/t-vms index 6af3df806a9..4e20bde8070 100644 --- a/gcc/config/vms/t-vms +++ b/gcc/config/vms/t-vms @@ -17,13 +17,8 @@ # along with GCC; see the file COPYING3. If not see # <http://www.gnu.org/licenses/>. -STMP_FIXPROTO = -STMP_FIXINC = LIMITS_H_TEST = false -# Under VMS, directory names cannot contain dots. -version:=$(shell echo $(BASEVER_c) | sed -e 's/\./_/g') - vms-crtlmap.h: $(srcdir)/config/vms/vms-crtlmap.map \ $(srcdir)/config/vms/make-crtlmap.awk $(AWK) -f $(srcdir)/config/vms/make-crtlmap.awk \ diff --git a/gcc/config/vms/t-vmsnative b/gcc/config/vms/t-vmsnative index a7fc031d4c1..27d3ca07ef4 100644 --- a/gcc/config/vms/t-vmsnative +++ b/gcc/config/vms/t-vmsnative @@ -17,6 +17,11 @@ # along with GCC; see the file COPYING3. If not see # <http://www.gnu.org/licenses/>. +# Under VMS, directory names cannot contain dots. +version:=$(shell echo $(BASEVER_c) | sed -e 's/\./_/g') + +# Wrappers around native VMS tools for ld and ar. + vms-ld.o: $(srcdir)/config/vms/vms-ld.c $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION) |