diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/ishft_3.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/ishft_3.f90 | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/ishft_3.f90 b/gcc/testsuite/gfortran.dg/ishft_3.f90 new file mode 100644 index 000000000..fa3938ef9 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/ishft_3.f90 @@ -0,0 +1,11 @@ +! { dg-do compile } +program ishft_3 + integer i, j + write(*,*) ishftc( 3, 2, 3 ) + write(*,*) ishftc( 3, 2, i ) + write(*,*) ishftc( 3, i, j ) + write(*,*) ishftc( 3, 128 ) ! { dg-error "exceeds BIT_SIZE of first" } + write(*,*) ishftc( 3, 0, 128 ) ! { dg-error "exceeds BIT_SIZE of first" } + write(*,*) ishftc( 3, 0, 0 ) ! { dg-error "Invalid third argument" } + write(*,*) ishftc( 3, 3, 2 ) ! { dg-error "exceeds third argument" } +end program |