sim: testsuite: punt unused toolchain variables
authorMike Frysinger <vapier@gentoo.org>
Mon, 22 Nov 2021 01:36:40 +0000 (20:36 -0500)
committerMike Frysinger <vapier@gentoo.org>
Fri, 26 Nov 2021 18:27:34 +0000 (13:27 -0500)
These haven't been used in over 20 years.  The sim testsuite used to
run these tools itself directly, but back in ~1999 it switched to the
dejagnu helpers (e.g. target_assemble & target_link), and the dejagnu
logic only utilizes XXX_FOR_TARGET variables.  Punt them here to avoid
confusion with dead code.

sim/testsuite/config/default.exp
sim/testsuite/cris/hw/rv-n-cris/rvc.exp
sim/testsuite/lib/sim-defs.exp

index 56255a33f3a37452eb69f27566feaa163facbff5..c167e10a7f354713bc92c70bd3492151dd13acfe 100644 (file)
@@ -2,41 +2,4 @@
 
 load_lib sim-defs.exp
 
-global AS
-if ![info exists AS] {
-    set AS [findfile $base_dir/../../gas/as-new $base_dir/../../gas/as-new \
-                    [transform as]]
-}
-
-global ASFLAGS
-if ![info exists ASFLAGS] {
-    set ASFLAGS ""
-}
-
-# Compilation is achieved with sim_compile ... so we don't check $CC here.
-
-global CFLAGS
-if ![info exists CFLAGS] {
-    set CFLAGS ""
-}
-
-global LD
-if ![info exists LD] {
-    set LD [findfile $base_dir/../../ld/ld-new $base_dir/../../ld/ld-new \
-                    [transform ld]]
-}
-
-global LDFLAGS
-if ![info exists LDFLAGS] {
-    set LDFLAGS ""
-}
-
-# The path to the simulator is obtained with [board_info host sim],
-# so we don't check $SIM here.
-
-global SIMFLAGS
-if ![info exists SIMFLAGS] {
-    set SIMFLAGS ""
-}
-
 sim_init
index ff3f757e49daf872160f42d5c6451fb8f7cb180e..24371d96bc42d1fb66b878bb4bd681f2362d9094 100644 (file)
@@ -21,7 +21,6 @@
 proc sim_has_rv_and_cris {} {
     global srcdir
     global subdir
-    global SIMFLAGS
     global global_as_options
     global global_ld_options
     global global_sim_options
index b3dff9e1a66c77fd425a23c0c1e2fdff5bc0cf4a..adf1369fc62ef3a49c2d4df5238f4d9443dd03e6 100644 (file)
@@ -73,8 +73,6 @@ proc sim_tool_path {} {
 # simulator (not the simulated program, the simulator) with sim_load.
 
 proc sim_run { prog sim_opts prog_opts redir options } {
-    global SIMFLAGS
-
     # Set the default value of the timeout.
     # FIXME: The timeout value we actually want is a function of
     # host, target, and testcase.
@@ -130,12 +128,12 @@ proc sim_run { prog sim_opts prog_opts redir options } {
        set cmd "$prog"
     }
 
-    send_log "$sim $always_opts $SIMFLAGS $sim_opts $cmd $prog_opts\n"
+    send_log "$sim $always_opts $sim_opts $cmd $prog_opts\n"
 
     if { "$redir" == "" } {
-       remote_spawn host "$sim $always_opts $SIMFLAGS $sim_opts $cmd $prog_opts"
+       remote_spawn host "$sim $always_opts $sim_opts $cmd $prog_opts"
     } else {
-       remote_spawn host "$sim $always_opts $SIMFLAGS $sim_opts $cmd $prog_opts $redir" writeonly
+       remote_spawn host "$sim $always_opts $sim_opts $cmd $prog_opts $redir" writeonly
     }
     set result [remote_wait host $testcase_timeout]
 
@@ -184,7 +182,6 @@ proc sim_run { prog sim_opts prog_opts redir options } {
 
 proc run_sim_test { name requested_machs } {
     global subdir srcdir
-    global SIMFLAGS
     global opts
     global cpu_option
     global cpu_option_sep