summaryrefslogtreecommitdiff
path: root/test/CodeGenInAction/arrayOperations.f95
blob: 21aacaf0df3653865a881c1ba4e12332a5d3e75e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
! RUN: %flang -interpret %s | %file_check %s
program arrayops
  integer i_arr(4)
  integer i_mat(3,3), i_mat2(3,3)
  real    r_mat(3,3)
  logical l_mat(3,3)
  character*(5) char_arr(2)

  ! assignment using data statement
  data i_arr / 1, 2*0, -69 /
  data i_mat / 1, 0, 0, 0, 1, 0, 0, 0, 1 /

  print *, i_arr(1), ', ', i_arr(2), ', ', i_arr(3), ', ', i_arr(4)
  continue ! CHECK: 1, 0, 0, -69

  print *, i_mat(1,1), ', ', i_mat(2,1), ', ', i_mat(3,1), ', ', &
           i_mat(1,2), ', ', i_mat(2,2), ', ', i_mat(3,2), ', ', &
           i_mat(1,3), ', ', i_mat(2,3), ', ', i_mat(3,3)
  continue ! CHECK-NEXT: 1, 0, 0, 0, 1, 0, 0, 0, 1

  i_mat2 = 1

  i_mat = i_mat + i_mat2 * 2
  print *, i_mat(1,1), ', ', i_mat(2,1), ', ', i_mat(3,1), ', ', &
           i_mat(1,2), ', ', i_mat(2,2), ', ', i_mat(3,2), ', ', &
           i_mat(1,3), ', ', i_mat(2,3), ', ', i_mat(3,3)
  continue ! CHECK-NEXT: 3, 2, 2, 2, 3, 2, 2, 2, 3

  l_mat = i_mat <= (i_mat2 + 1)
  print *, l_mat(1,1), ', ', l_mat(2,1), ', ', l_mat(3,1), ', ', &
           l_mat(1,2), ', ', l_mat(2,2), ', ', l_mat(3,2), ', ', &
           l_mat(1,3), ', ', l_mat(2,3), ', ', l_mat(3,3)
  continue ! CHECK-NEXT: false, true, true, true, false, true, true, true, false

  r_mat = 1.0
  r_mat(3,3) = 0.0
  i_mat = i_mat * 2 + r_mat
  print *, i_mat(1,1), ', ', i_mat(2,1), ', ', i_mat(3,1), ', ', &
           i_mat(1,2), ', ', i_mat(2,2), ', ', i_mat(3,2), ', ', &
           i_mat(1,3), ', ', i_mat(2,3), ', ', i_mat(3,3)
  continue ! CHECK-NEXT: 7, 5, 5, 5, 7, 5, 5, 5, 6

  r_mat = r_mat + 1
  i_mat = r_mat
  print *, i_mat(1,1), ', ', i_mat(2,1), ', ', i_mat(3,1), ', ', &
           i_mat(1,2), ', ', i_mat(2,2), ', ', i_mat(3,2), ', ', &
           i_mat(1,3), ', ', i_mat(2,3), ', ', i_mat(3,3)
  continue ! CHECK-NEXT: 2, 2, 2, 2, 2, 2, 2, 2, 1

  r_mat = 5.5
  i_mat = int(r_mat)
  print *, i_mat(1,1), ', ', i_mat(2,1), ', ', i_mat(3,1), ', ', &
           i_mat(1,2), ', ', i_mat(2,2), ', ', i_mat(3,2), ', ', &
           i_mat(1,3), ', ', i_mat(2,3), ', ', i_mat(3,3)
  continue ! CHECK-NEXT: 5, 5, 5, 5, 5, 5, 5, 5, 5

  i_mat(2,2) = -10
  i_mat(3,3) = -11
  i_mat = abs(i_mat) * 2
  print *, i_mat(1,1), ', ', i_mat(2,1), ', ', i_mat(3,1), ', ', &
           i_mat(1,2), ', ', i_mat(2,2), ', ', i_mat(3,2), ', ', &
           i_mat(1,3), ', ', i_mat(2,3), ', ', i_mat(3,3)
  continue ! CHECK-NEXT: 10, 10, 10, 10, 20, 10, 10, 10, 22

  i_mat = iand(i_mat, 7)
  print *, i_mat(1,1), ', ', i_mat(2,1), ', ', i_mat(3,1), ', ', &
           i_mat(1,2), ', ', i_mat(2,2), ', ', i_mat(3,2), ', ', &
           i_mat(1,3), ', ', i_mat(2,3), ', ', i_mat(3,3)
  continue ! CHECK-NEXT: 2, 2, 2, 2, 4, 2, 2, 2, 6

end