[ARM] Only test tls-disable-literal-pool.c if target supports native TLS

2017-05-19  Prakhar Bahuguna  <prakhar.bahuguna@arm.com>

    gcc/testsuite/
    * gcc.target/arm/tls-disable-literal-pool.c: Change
    require-effective-target to tls_native.
    Move dg-error to return statement line and change to dg-message.

From-SVN: r248270
This commit is contained in:
Prakhar Bahuguna 2017-05-19 13:04:27 +00:00 committed by Thomas Preud'homme
parent 39aac208ab
commit a978134eac
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2017-05-19 Prakhar Bahuguna <prakhar.bahuguna@arm.com>
* gcc.target/arm/tls-disable-literal-pool.c: Change
require-effective-target to tls_native.
Move dg-error to return statement line and change to dg-message.
2017-05-19 Richard Biener <rguenther@suse.de>
PR c++/80593

View File

@ -1,5 +1,5 @@
/* { dg-do compile } */
/* { dg-require-effective-target tls } */
/* { dg-require-effective-target tls_native } */
/* { dg-require-effective-target arm_cortex_m } */
/* { dg-require-effective-target arm_thumb2_ok } */
/* { dg-options "-mslow-flash-data" } */
@ -9,7 +9,6 @@ __thread int x = 0;
int
bar ()
{
return x;
return x; /* { dg-message "sorry, unimplemented: accessing thread-local storage is not currently supported with -mpure-code or -mslow-flash-data" } */
}
/* { dg-error "accessing thread-local storage is not currently supported with -mpure-code or -mslow-flash-data" "" { target *-*-* } 12 } */