Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
3d146acb
Commit
3d146acb
authored
Aug 13, 2001
by
Jason Merrill
Committed by
Jason Merrill
Aug 13, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* lib/scanasm.exp (scan-assembler*): Use expr instead of concat.
From-SVN: r44861
parent
16757495
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/lib/scanasm.exp
+4
-4
No files found.
gcc/testsuite/ChangeLog
View file @
3d146acb
2001-08-13 Jason Merrill <jason_merrill@redhat.com>
* lib/scanasm.exp (scan-assembler*): Use expr instead of concat.
2001-08-11 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
* g++.dg/template/unify1.C: New test.
...
...
gcc/testsuite/lib/scanasm.exp
View file @
3d146acb
...
...
@@ -23,7 +23,7 @@ proc scan-assembler { pattern args } {
# This assumes that we are two frames down from dg-test, and that
# it still stores the filename of the testcase in a local variable "name".
# A cleaner solution would require a new dejagnu release.
set testcase [uplevel 2 {
concat "$name"
}]
set testcase [uplevel 2 {
expr { $name }
}]
# This must match the rule in gcc-dg.exp.
set output_file "[file rootname [file tail $testcase]].s"
...
...
@@ -46,7 +46,7 @@ proc scan-assembler { pattern args } {
# Call pass if pattern is not present, otherwise fail.
proc scan-assembler-not { pattern args } {
set testcase [uplevel 2 {
concat "$name"
}]
set testcase [uplevel 2 {
expr { $name }
}]
set output_file "[file rootname [file tail $testcase]].s"
set fd [open $output_file r]
...
...
@@ -79,7 +79,7 @@ proc scan-assembler-dem { pattern args } {
verbose -log "c++filt is $cxxfilt"
}
set testcase [uplevel 2 {
concat "$name"
}]
set testcase [uplevel 2 {
expr { $name }
}]
set output_file "[file rootname [file tail $testcase]].s"
set fd [open "| $cxxfilt < $output_file" r]
...
...
@@ -111,7 +111,7 @@ proc scan-assembler-dem-not { pattern args } {
verbose -log "c++filt is $cxxfilt"
}
set testcase [uplevel 2 {
concat "$name"
}]
set testcase [uplevel 2 {
expr { $name }
}]
set output_file "[file rootname [file tail $testcase]].s"
set fd [open "| $cxxfilt < $output_file" r]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment