c: Fix up pointer types to may_alias structures [PR114493]
[official-gcc.git] / gcc / testsuite / gfortran.dg / simd-builtins-7.f90
blob75734d43c3d549901a14a2aaa6630fffd8946120
1 ! { dg-do compile { target { i?86-*-linux* x86_64-*-linux* } } }
2 ! { dg-additional-options "-msse2 -mno-avx -nostdinc -Ofast -fpre-include=simd-builtins-7.h -fdump-tree-optimized" }
4 program test_overloaded_intrinsic
5 real(4) :: x4(3200), y4(3200)
6 real(8) :: x8(3200), y8(3200)
8 y4 = sin(x4)
9 print *, y4
11 y4 = sin(x8)
12 print *, y8
13 end
15 ! { dg-final { scan-tree-dump "sinf.simdclone" "optimized" { target ia32 } } } */
16 ! { dg-final { scan-tree-dump-not "sin.simdclone" "optimized" { target ia32 } } } */
18 ! { dg-final { scan-tree-dump "sin.simdclone" "optimized" { target lp64} } } */
19 ! { dg-final { scan-tree-dump-not "sinf.simdclone" "optimized" { target lp64 } } } */