Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(523)

Unified Diff: gcc/gcc/testsuite/gcc.dg/builtins-44.c

Issue 3050029: [gcc] GCC 4.5.0=>4.5.1 (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/nacl-toolchain.git
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gcc/gcc/testsuite/gcc.dg/autopar/reduc-9.c ('k') | gcc/gcc/testsuite/gcc.dg/builtins-config.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gcc/gcc/testsuite/gcc.dg/builtins-44.c
diff --git a/gcc/gcc/testsuite/gcc.dg/builtins-44.c b/gcc/gcc/testsuite/gcc.dg/builtins-44.c
index 9e19d774dfd78e7f9c82f4cf9df9184afa9f4a8c..1f1eaf0f6a51797f5d90aaa0f4194dadae2586ff 100644
--- a/gcc/gcc/testsuite/gcc.dg/builtins-44.c
+++ b/gcc/gcc/testsuite/gcc.dg/builtins-44.c
@@ -31,17 +31,13 @@ main ()
if (__builtin_isinfl (pinfl) != 1)
link_error ();
- if (__builtin_isinf (-pinf) != -1)
+ if (__builtin_isinf_sign (-pinf) != -1)
link_error ();
#ifndef __SPU__
- if (__builtin_isinf (-pinff) != -1)
- link_error ();
- if (__builtin_isinff (-pinff) != -1)
+ if (__builtin_isinf_sign (-pinff) != -1)
link_error ();
#endif
- if (__builtin_isinf (-pinfl) != -1)
- link_error ();
- if (__builtin_isinfl (-pinfl) != -1)
+ if (__builtin_isinf_sign (-pinfl) != -1)
link_error ();
if (__builtin_isinf (4.0))
« no previous file with comments | « gcc/gcc/testsuite/gcc.dg/autopar/reduc-9.c ('k') | gcc/gcc/testsuite/gcc.dg/builtins-config.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698