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

Unified Diff: gcc/gcc/testsuite/gfortran.dg/c_kind_int128_test1.f03

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/gfortran.dg/boz_14.f90 ('k') | gcc/gcc/testsuite/gfortran.dg/c_kind_int128_test2.f03 » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gcc/gcc/testsuite/gfortran.dg/c_kind_int128_test1.f03
diff --git a/gcc/gcc/testsuite/gfortran.dg/c_kind_int128_test1.f03 b/gcc/gcc/testsuite/gfortran.dg/c_kind_int128_test1.f03
index 6be1ac20b64dc07a271f4636fe16bc3241232f63..b1919614b2e20c3d2813f6aef37a6d469244802e 100644
--- a/gcc/gcc/testsuite/gfortran.dg/c_kind_int128_test1.f03
+++ b/gcc/gcc/testsuite/gfortran.dg/c_kind_int128_test1.f03
@@ -2,7 +2,6 @@
! { dg-options "-std=f2003" }
! { dg-require-effective-target fortran_integer_16 }
!
-! Note: int_fast*_t currently not supported.
subroutine c_kind_int128_1
use, intrinsic :: iso_c_binding
@@ -10,15 +9,16 @@ subroutine c_kind_int128_1
integer(c_int128_t) :: a ! { dg-error "has no IMPLICIT type" }
integer(c_int_least128_t) :: b ! { dg-error "has no IMPLICIT type" }
-! integer(c_int_fast128_t) :: c
-
+ integer(c_int_fast128_t) :: c ! { dg-error "has no IMPLICIT type" }
+
end subroutine c_kind_int128_1
+
subroutine c_kind_int128_2
use, intrinsic :: iso_c_binding
integer(c_int128_t) :: a ! { dg-error "has not been declared or is a variable" }
integer(c_int_least128_t) :: b ! { dg-error "has not been declared or is a variable" }
-! integer(c_int_fast128_t) :: c
-
+ integer(c_int_fast128_t) :: c ! { dg-error "has not been declared or is a variable" }
+
end subroutine c_kind_int128_2
« no previous file with comments | « gcc/gcc/testsuite/gfortran.dg/boz_14.f90 ('k') | gcc/gcc/testsuite/gfortran.dg/c_kind_int128_test2.f03 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698