Commit 601399c0 by Jakub Jelinek Committed by Jakub Jelinek

re PR middle-end/86416 ([OpenMP] Offloading - better lto1 error message if mode…

re PR middle-end/86416 ([OpenMP] Offloading - better lto1 error message if mode not supported on offloading target)

	PR middle-end/86416
	* testsuite/libgomp.c/pr86416-1.c (main): Use L suffixes rather than
	q or none.
	* testsuite/libgomp.c/pr86416-2.c (main): Use Q suffixes rather than
	L or none.

From-SVN: r279552
parent a6163563
2019-12-18 Jakub Jelinek <jakub@redhat.com>
PR middle-end/86416
* testsuite/libgomp.c/pr86416-1.c (main): Use L suffixes rather than
q or none.
* testsuite/libgomp.c/pr86416-2.c (main): Use Q suffixes rather than
L or none.
2019-12-19 Julian Brown <julian@codesourcery.com> 2019-12-19 Julian Brown <julian@codesourcery.com>
Maciej W. Rozycki <macro@codesourcery.com> Maciej W. Rozycki <macro@codesourcery.com>
Tobias Burnus <tobias@codesourcery.com> Tobias Burnus <tobias@codesourcery.com>
......
...@@ -16,7 +16,7 @@ long double foo (long double x) ...@@ -16,7 +16,7 @@ long double foo (long double x)
int main() int main()
{ {
long double v = foo (10.0q) - 20.0q; long double v = foo (10.0L) - 20.0L;
if (v > 1.0e-5 || v < -1.0e-5) abort(); if (v > 1.0e-5L || v < -1.0e-5L) abort();
return 0; return 0;
} }
...@@ -16,7 +16,7 @@ __float128 foo(__float128 y) ...@@ -16,7 +16,7 @@ __float128 foo(__float128 y)
int main() int main()
{ {
__float128 v = foo (5.0L) - 20.0L; __float128 v = foo (5.0Q) - 20.0Q;
if (v > 1.0e-5 || v < -1.0e-5) abort(); if (v > 1.0e-5Q || v < -1.0e-5Q) abort();
return 0; return 0;
} }
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