diff options
author | James A. Morrison <phython@gcc.gnu.org> | 2005-02-01 15:07:42 +0000 |
---|---|---|
committer | James A. Morrison <phython@gcc.gnu.org> | 2005-02-01 15:07:42 +0000 |
commit | 596d4d613400489b8d8fce7a127f24585ca0daac (patch) | |
tree | 2ef43e45e36ef559dcc87b2bacd3e9e950d28f33 | |
parent | 6555b6bdeafde8eaade2267e31a89f17fb846a53 (diff) | |
download | gcc-596d4d613400489b8d8fce7a127f24585ca0daac.zip gcc-596d4d613400489b8d8fce7a127f24585ca0daac.tar.gz gcc-596d4d613400489b8d8fce7a127f24585ca0daac.tar.bz2 |
treelang.exp: Fix comment typos.
2005-02-01 James A. Morrison <phython@gcc.gnu.org>
* lib/treelang.exp: Fix comment typos.
(treelang_target_compile): Don't append libs=-ltreelang to options.
From-SVN: r94542
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/lib/treelang.exp | 12 |
2 files changed, 11 insertions, 6 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index defd0903..3aba42c 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2005-02-01 James A. Morrison <phython@gcc.gnu.org> + + * lib/treelang.exp: Fix comment typos. + (treelang_target_compile): Don't append libs=-ltreelang to options. + 2005-02-01 Alexandre Oliva <aoliva@redhat.com> * g++.dg/parse/typename7.C: Adjust error messages. diff --git a/gcc/testsuite/lib/treelang.exp b/gcc/testsuite/lib/treelang.exp index 5f6c1c8..9b22534 100644 --- a/gcc/testsuite/lib/treelang.exp +++ b/gcc/testsuite/lib/treelang.exp @@ -21,14 +21,15 @@ # Having this file here magically tells dejagnu that the treelang # directory is worthy of testing -# This file is basically treelang.exp with treelang replaced with treelang. +# This file is basically gcc.exp with gcc replaced with treelang. # This file is loaded by the tool init file (eg: unix.exp). It provides -# default definitions for treelang_start, etc. and other supporting cast members. +# default definitions for treelang_start, etc. and other supporting cast +# members. -# These globals are used by treelang_start if no compiler arguments are provided. -# They are also used by the various testsuites to define the environment: -# where to find stdio.h, libc.a, etc. +# These globals are used by treelang_start if no compiler arguments are +# provided. They are also used by the various testsuites to define the +# environment: where to find stdio.h, libc.a, etc. load_lib libgloss.exp load_lib prune.exp @@ -143,7 +144,6 @@ proc treelang_target_compile { source dest type options } { set ld_library_path ".:${treelang_libgcc_s_path}" set_ld_library_path_env_vars - lappend options "libs=-ltreelang" if { [target_info needs_status_wrapper]!="" && [info exists gluefile] } { lappend options "libs=${gluefile}" |