diff options
author | Alan Modra <amodra@gmail.com> | 2016-12-21 19:13:52 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2016-12-21 19:18:46 +1030 |
commit | 4e25adb3956f880efc28bfebabe79be7338b413f (patch) | |
tree | 9e8b41dbf37bac5ab3c6c78abdd26ff6c59019fc /ld/testsuite/ld-scripts/sysroot-prefix.exp | |
parent | 9962fe293d16e1e1e4d05154e751fc7576226954 (diff) | |
download | gdb-4e25adb3956f880efc28bfebabe79be7338b413f.zip gdb-4e25adb3956f880efc28bfebabe79be7338b413f.tar.gz gdb-4e25adb3956f880efc28bfebabe79be7338b413f.tar.bz2 |
Remove high bit set characters
gas/
* doc/c-lm32.texi: Fix chars with high bit set.
* testsuite/gas/bfin/vector2.s: Likewise.
gold/
* arm.cc: Fix comment chars with high bit set.
include/
* coff/pe.h: Fix comment chars with high bit set.
* opcode/xgate.h: Likewise.
ld/
* testsuite/ld-scripts/sysroot-prefix.exp: Fix chars with high bit set.
Diffstat (limited to 'ld/testsuite/ld-scripts/sysroot-prefix.exp')
-rw-r--r-- | ld/testsuite/ld-scripts/sysroot-prefix.exp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ld/testsuite/ld-scripts/sysroot-prefix.exp b/ld/testsuite/ld-scripts/sysroot-prefix.exp index 91fee0e..47d0657 100644 --- a/ld/testsuite/ld-scripts/sysroot-prefix.exp +++ b/ld/testsuite/ld-scripts/sysroot-prefix.exp @@ -81,7 +81,7 @@ proc sysroot_prefix_test_setup { } { global as gasopt srcdir subdir ar if {![ld_assemble_flags $as $gasopt $srcdir/$subdir/pr14962a.s tmpdir/main.o]} { - error "Error assembling a trivial file for sysroot-prefix tests framework" + error "Error assembling a trivial file for sysroot-prefix tests framework" return 0 } @@ -106,13 +106,13 @@ proc sysroot_prefix_test_setup { } { set libnamebase [lindex $test_object 2] if ![ld_assemble_flags $as $gasopt $srcdir/$subdir/$sname $oname] { - error "Error assembling trivial file $sname for sysroot-prefix tests framework" + error "Error assembling trivial file $sname for sysroot-prefix tests framework" return 0 } if { [string length $libnamebase] != 0 && ![ar_simple_create $ar "" tmpdir/sysroot/tmp/ldtest-xyzzy/lib$libnamebase.a $oname] } { - error "Error creating archive $libnamebase for sysroot-prefix tests framework" + error "Error creating archive $libnamebase for sysroot-prefix tests framework" return 0 } } |