brintos

brintos / llvm-project-archived public Read only

0
0
Text · 798 B · b686ae2 Raw
14 lines · plain
1! RUN: %flang_fc1 -fdebug-dump-symbols %s 2>&1 | FileCheck %s2! Test truncation/padding in DATA statement.3program main4  character(len=3) :: c1, c2, c3(2), c4(2)5  data c1(1:2), c1(3:3) /'123', '4'/6  data c2(1:2), c2(3:3) /'1', '2'/7  data c3(:)(1:2), c3(:)(3:3) /'123', '678', '4', '9'/8  data c4(:)(1:2), c4(:)(3:3) /'1', '6', '2', '7'/9end10!CHECK:  c1 (InDataStmt) size=3 offset=0: ObjectEntity type: CHARACTER(3_4,1) init:"124"11!CHECK:  c2 (InDataStmt) size=3 offset=3: ObjectEntity type: CHARACTER(3_4,1) init:"1 2"12!CHECK:  c3 (InDataStmt) size=6 offset=6: ObjectEntity type: CHARACTER(3_4,1) shape: 1_8:2_8 init:[CHARACTER(KIND=1,LEN=3)::"124","679"]13!CHECK:  c4 (InDataStmt) size=6 offset=12: ObjectEntity type: CHARACTER(3_4,1) shape: 1_8:2_8 init:[CHARACTER(KIND=1,LEN=3)::"1 2","6 7"]14