sim: testsuite: drop sim_compile cover function
authorMike Frysinger <vapier@gentoo.org>
Thu, 11 Nov 2021 06:23:10 +0000 (01:23 -0500)
committerMike Frysinger <vapier@gentoo.org>
Thu, 11 Nov 2021 07:07:10 +0000 (02:07 -0500)
Most code isn't using this, and the only call site (in one cris file)
can use target_compile directly.  So switch it over to simplify.

sim/testsuite/cris/c/c.exp
sim/testsuite/lib/sim-defs.exp

index 08ea18812ec5bd655556d0db2877eb5ebefe5d39..26084682dc955a3d4c2f76ce387221aab3ebe2a6 100644 (file)
@@ -189,7 +189,7 @@ foreach src [lsort [glob -nocomplain $srcdir/$subdir/*.c]] {
     verbose -log "Compiling $src with $opts(cc)"
 
     set dest "$opts(dest)"
-    if { [sim_compile $src $dest "executable" "$opts(cc)" ] != "" } {
+    if { [target_compile $src $dest "executable" "$opts(cc)" ] != "" } {
        unresolved $testname
        continue
     }
index 6e8feaf6bf8938c2b2094f964daf534d9fc42359..7bc4c66549eeab7195bc79b7f8ade845d6d2e3b1 100644 (file)
@@ -35,19 +35,6 @@ proc sim_version {} {
     clone_output "$sim_path $version\n"
 }
 
-# Cover function to target_compile.
-# Copied from gdb_compile.
-
-proc sim_compile { source dest type options } {
-    set result [target_compile $source $dest $type $options]
-    regsub "\[\r\n\]*$" "$result" "" result
-    regsub "^\[\r\n\]*" "$result" "" result
-    if { $result != "" } {
-       clone_output "sim compile output: $result"
-    }
-    return $result
-}
-
 # Find the path to the simulator for executing.
 proc sim_tool_path {} {
     global sim_path