diff options
-rw-r--r-- | gas/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gas/testsuite/gas/cfi/cfi.exp | 6 |
2 files changed, 9 insertions, 1 deletions
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index 180fbf96a93..0abee087f6d 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2006-11-10 Thiemo Seufer <ths@mips.com> + + * gas/cfi/cfi.exp: Don't run cfi-common-6 for mips*-*. + 2006-11-10 Pedro Alves <pedro_alves@portugalmail.pt> * gas/arm/undefined.d: Run test on Windows CE. diff --git a/gas/testsuite/gas/cfi/cfi.exp b/gas/testsuite/gas/cfi/cfi.exp index da9ef26d470..3a5650559cc 100644 --- a/gas/testsuite/gas/cfi/cfi.exp +++ b/gas/testsuite/gas/cfi/cfi.exp @@ -73,4 +73,8 @@ run_dump_test "cfi-common-2" run_dump_test "cfi-common-3" run_dump_test "cfi-common-4" run_dump_test "cfi-common-5" -run_dump_test "cfi-common-6" + +# MIPS doesn't support PC relative cfi directives +if { ![istarget "mips*-*"] } then { + run_dump_test "cfi-common-6" +} |