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.
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
}
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