! RUN: bbc -emit-fir -hlfir=false %s -o - | FileCheck %s ! CHECK-LABEL: func @_QPrandom_test_1 subroutine random_test_1 ! CHECK-DAG: [[ss:%[0-9]+]] = fir.alloca {{.*}}random_test_1Ess ! CHECK-DAG: [[vv:%[0-9]+]] = fir.alloca {{.*}}random_test_1Evv integer ss, vv(40) ! CHECK-DAG: [[rr:%[0-9]+]] = fir.alloca {{.*}}random_test_1Err ! CHECK-DAG: [[aa:%[0-9]+]] = fir.alloca {{.*}}random_test_1Eaa real rr, aa(5) ! CHECK: fir.call @_FortranARandomInit(%true{{.*}}, %false{{.*}}) {{.*}}: (i1, i1) -> none call random_init(.true., .false.) ! CHECK: [[box:%[0-9]+]] = fir.embox [[ss]] ! CHECK: [[argbox:%[0-9]+]] = fir.convert [[box]] ! CHECK: fir.call @_FortranARandomSeedSize([[argbox]] call random_seed(size=ss) print*, 'size: ', ss ! CHECK: fir.call @_FortranARandomSeedDefaultPut() {{.*}}: () -> none call random_seed() ! CHECK: [[box:%[0-9]+]] = fir.embox [[rr]] ! CHECK: [[argbox:%[0-9]+]] = fir.convert [[box]] ! CHECK: fir.call @_FortranARandomNumber([[argbox]] call random_number(rr) print*, rr ! CHECK: [[box:%[0-9]+]] = fir.embox [[vv]] ! CHECK: [[argbox:%[0-9]+]] = fir.convert [[box]] ! CHECK: fir.call @_FortranARandomSeedGet([[argbox]] call random_seed(get=vv) ! print*, 'get: ', vv(1:ss) ! CHECK: [[box:%[0-9]+]] = fir.embox [[vv]] ! CHECK: [[argbox:%[0-9]+]] = fir.convert [[box]] ! CHECK: fir.call @_FortranARandomSeedPut([[argbox]] call random_seed(put=vv) print*, 'put: ', vv(1:ss) ! CHECK: [[box:%[0-9]+]] = fir.embox [[aa]] ! CHECK: [[argbox:%[0-9]+]] = fir.convert [[box]] ! CHECK: fir.call @_FortranARandomNumber([[argbox]] call random_number(aa) print*, aa end ! CHECK-LABEL: func @_QPrandom_test_2 subroutine random_test_2 integer :: size, get(5) = -9 call foo(size) call bar(size, get) contains ! CHECK-LABEL: func @_QFrandom_test_2Pfoo subroutine foo(size, put, get) ! CHECK: [[s1:%[0-9]+]] = fir.is_present %arg0 ! CHECK: [[s2:%[0-9]+]] = fir.embox %arg0 ! CHECK: [[s3:%[0-9]+]] = fir.absent !fir.box ! CHECK: [[s4:%[0-9]+]] = arith.select [[s1]], [[s2]], [[s3]] : !fir.box integer, optional :: size ! CHECK: [[p1:%[0-9]+]] = fir.is_present %arg1 ! CHECK: [[p2:%[0-9]+]] = fir.embox %arg1 ! CHECK: [[p3:%[0-9]+]] = fir.absent !fir.box> ! CHECK: [[p4:%[0-9]+]] = arith.select [[p1]], [[p2]], [[p3]] : !fir.box> integer, optional :: put(5) ! CHECK: [[g1:%[0-9]+]] = fir.is_present %arg2 ! CHECK: [[g2:%[0-9]+]] = fir.embox %arg2 ! CHECK: [[g3:%[0-9]+]] = fir.absent !fir.box> ! CHECK: [[g4:%[0-9]+]] = arith.select [[g1]], [[g2]], [[g3]] : !fir.box> integer, optional :: get(5) ! CHECK: [[s5:%[0-9]+]] = fir.convert [[s4]] : (!fir.box) -> !fir.box ! CHECK: [[p5:%[0-9]+]] = fir.convert [[p4]] : (!fir.box>) -> !fir.box ! CHECK: [[g5:%[0-9]+]] = fir.convert [[g4]] : (!fir.box>) -> !fir.box ! CHECK: fir.call @_FortranARandomSeed([[s5]], [[p5]], [[g5]] call random_seed(size, put, get) print*, size end subroutine ! CHECK-LABEL: func @_QFrandom_test_2Pbar subroutine bar(size, get, put) integer, optional :: size ! CHECK: [[p1:%[0-9]+]] = fir.is_present %arg2 ! CHECK: [[p2:%[0-9]+]] = fir.embox %arg2 ! CHECK: [[p3:%[0-9]+]] = fir.absent !fir.box> ! CHECK: [[p4:%[0-9]+]] = arith.select [[p1]], [[p2]], [[p3]] : !fir.box> integer, optional :: put(5) ! CHECK: [[g1:%[0-9]+]] = fir.is_present %arg1 ! CHECK: [[g2:%[0-9]+]] = fir.embox %arg1 ! CHECK: [[g3:%[0-9]+]] = fir.absent !fir.box> ! CHECK: [[g4:%[0-9]+]] = arith.select [[g1]], [[g2]], [[g3]] : !fir.box> integer, optional :: get(5) ! CHECK: [[s1:%[0-9]+]] = fir.absent !fir.box ! CHECK: [[p5:%[0-9]+]] = fir.convert [[p4]] : (!fir.box>) -> !fir.box ! CHECK: [[g5:%[0-9]+]] = fir.convert [[g4]] : (!fir.box>) -> !fir.box ! CHECK: fir.call @_FortranARandomSeed([[s1]], [[p5]], [[g5]] call random_seed(put=put, get=get) print*, get(1:size+1) ! "extra" value should be -9 end subroutine end call random_test_1 call random_test_2 end