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
8c0a5264
Commit
8c0a5264
authored
May 12, 2003
by
David Edelsohn
Committed by
David Edelsohn
May 12, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* debug/debug.exp: Skip debug-[12].c at -O3 on non-Dwarf targets.
From-SVN: r66737
parent
f08b4d88
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
1 deletions
+16
-1
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/gcc.dg/debug/debug.exp
+12
-1
No files found.
gcc/testsuite/ChangeLog
View file @
8c0a5264
2003-05-12 David Edelsohn <edelsohn@gnu.org>
* debug/debug.exp: Skip debug-[12].c at -O3 on non-Dwarf targets.
2003-05-12 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
* g++.old-deja/g++.brendan/ns1.C: Remove private member warning.
...
...
gcc/testsuite/gcc.dg/debug/debug.exp
View file @
8c0a5264
...
...
@@ -66,7 +66,18 @@ foreach test [lsort [glob -nocomplain $srcdir/$subdir/*.\[cS\]]] {
&& [string match "*1" [lindex "$flags" 0] ] } {
set doit 0
}
# High optimization can remove the variable whose existence is tested.
# Dwarf debugging with commentary (-dA) preserves the symbol name in the
# assembler output, but stabs debugging does not.
# http://gcc.gnu.org/ml/gcc-regression/2003-04/msg00095.html
if { [string match {*/debug-[12].c} "$nshort"] \
&& [string match "*O3*" "$flags"] \
&& ( [string match "*coff*" "$flags"] \
|| [string match "*stabs*" "$flags"] ) } {
set doit 0
}
if { $doit } {
verbose -log "Testing $nshort, $flags" 1
dg-test $test $flags ""
...
...
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