Commit 20ce1f50 by Jozef Lawrynowicz Committed by Jozef Lawrynowicz

gcc-dg.exp (gcc-dg-prune): Add new regexps for when the size of an output…

gcc-dg.exp (gcc-dg-prune): Add new regexps for when the size of an output section is too large for a...

2018-11-08  Jozef Lawrynowicz  <jozef.l@mittosystems.com>

	* lib/gcc-dg.exp (gcc-dg-prune): Add new regexps for when the size of 
	an output section is too large for a memory region, or a memory
	region overflows.

From-SVN: r265924
parent 0274dd3f
2018-11-08 Jozef Lawrynowicz <jozef.l@mittosystems.com>
* lib/gcc-dg.exp (gcc-dg-prune): Add new regexps for when the size of
an output section is too large for a memory region, or a memory
region overflows.
2018-11-08 Eric Botcazou <ebotcazou@adacore.com>
* gnat.dg/null_pointer_deref1.adb: Remove -gnatp and add pragma.
......
......@@ -394,6 +394,14 @@ proc gcc-dg-prune { system text } {
return "::unsupported::memory full"
}
if [regexp "(^|\n)\[^\n\]* section.*will not fit in region" $text] {
return "::unsupported::memory full"
}
if [regexp "(^|\n)\[^\n\]* region.*overflowed by" $text] {
return "::unsupported::memory full"
}
# Likewise, if we see ".text exceeds local store range" or
# similar.
if {[string match "spu-*" $system] && \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment