diff options
author | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-02-23 11:53:55 +0000 |
---|---|---|
committer | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-02-23 11:53:55 +0000 |
commit | a3d20cbb2a2fc6cb46fa17463efa6fb57cb32e65 (patch) | |
tree | f8d0cc4f29f639944da8db5c9aca13a9b4348115 | |
parent | 2dae816dabcbc1c1bb8b1ba7bc58215e42d4e640 (diff) | |
download | gcc-a3d20cbb2a2fc6cb46fa17463efa6fb57cb32e65.tar.gz |
PR target/20159
* config/sparc/t-elf (startup files): Assemble with CPP.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@95450 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/sparc/t-elf | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fb6c31763ca..d87db005668 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-02-23 Michael Beach <michaelb@ieee.org> + + PR target/20159 + * config/sparc/t-elf (startup files): Assemble with CPP. + 2005-02-23 Paolo Bonzini <bonzini@gnu.org> * genpreds.c (mark_mode_tests): Handle non-VOIDmode match_operands. diff --git a/gcc/config/sparc/t-elf b/gcc/config/sparc/t-elf index 027940b10e4..6868736a178 100644 --- a/gcc/config/sparc/t-elf +++ b/gcc/config/sparc/t-elf @@ -24,6 +24,6 @@ INSTALL_LIBGCC = install-multilib # Assemble startup files. crti.o: $(srcdir)/config/sparc/sol2-ci.asm $(GCC_PASSES) - $(GCC_FOR_TARGET) -c -o crti.o -x assembler $(srcdir)/config/sparc/sol2-ci.asm + $(GCC_FOR_TARGET) -c -o crti.o -x assembler-with-cpp $(srcdir)/config/sparc/sol2-ci.asm crtn.o: $(srcdir)/config/sparc/sol2-cn.asm $(GCC_PASSES) - $(GCC_FOR_TARGET) -c -o crtn.o -x assembler $(srcdir)/config/sparc/sol2-cn.asm + $(GCC_FOR_TARGET) -c -o crtn.o -x assembler-with-cpp $(srcdir)/config/sparc/sol2-cn.asm |