* gfortran.dg/nint_p7.f90: New testcase.
authordje <dje@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 25 Nov 2015 19:39:19 +0000 (19:39 +0000)
committerdje <dje@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 25 Nov 2015 19:39:19 +0000 (19:39 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230898 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/nint_p7.f90 [new file with mode: 0644]

index e0b16f5..90c0aae 100644 (file)
@@ -1,3 +1,7 @@
+2015-11-25  David Edelsohn  <dje.gcc@gmail.com>
+
+       * gfortran.dg/nint_p7.f90: New testcase.
+
 2015-11-25  Markus Trippelsdorf  <markus@trippelsdorf.de>
            Paolo Carlini  <paolo.carlini@oracle.com>
 
diff --git a/gcc/testsuite/gfortran.dg/nint_p7.f90 b/gcc/testsuite/gfortran.dg/nint_p7.f90
new file mode 100644 (file)
index 0000000..8f35522
--- /dev/null
@@ -0,0 +1,12 @@
+! Fortran
+! { dg-do compile { target { powerpc*-*-* } } }
+! { dg-require-effective-target powerpc_vsx_ok } 
+! { dg-skip-if "do not override -mcpu" { powerpc*-*-* } { "-mcpu=*" } { "-mcpu=power7" } } 
+! { dg-options "-O2 -mcpu=power7 -ffast-math" } 
+! { dg-final { scan-assembler-times "xsrdpi" 2 } } 
+
+       subroutine test_nint(x4,x8)
+          real(4) x4
+          real(8) x8
+          print *, nint(x4), idnint(x8)
+       end subroutine test_nint