brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.3 KiB · 84cd6d1 Raw
25 lines · plain
1! RUN: %flang_fc1 -fdebug-dump-symbols -pedantic %s 2>&1 | FileCheck %s \2! RUN:   --check-prefixes=%if target={{.*-aix.*|sparc.*}} %{"CHECK","BE"%} \3! RUN:                    %else %{"CHECK","LE"%}4 5! CHECK: DATA statement value initializes 'jx' of type 'INTEGER(4)' with CHARACTER6! CHECK: DATA statement value initializes 'jy' of type 'INTEGER(4)' with CHARACTER7! CHECK: DATA statement value initializes 'jz' of type 'INTEGER(4)' with CHARACTER8! CHECK: DATA statement value initializes 'kx' of type 'INTEGER(8)' with CHARACTER9! LE: jx (InDataStmt) size=4 offset=0: ObjectEntity type: INTEGER(4) init:1684234849_410! BE: jx (InDataStmt) size=4 offset=0: ObjectEntity type: INTEGER(4) init:1633837924_411! LE: jy (InDataStmt) size=4 offset=4: ObjectEntity type: INTEGER(4) init:543384161_412! BE: jy (InDataStmt) size=4 offset=4: ObjectEntity type: INTEGER(4) init:1633837856_413! LE: jz (InDataStmt) size=4 offset=8: ObjectEntity type: INTEGER(4) init:1684234849_414! BE: jz (InDataStmt) size=4 offset=8: ObjectEntity type: INTEGER(4) init:1633837924_415! LE: kx (InDataStmt) size=8 offset=16: ObjectEntity type: INTEGER(8) init:7523094288207667809_816! BE: kx (InDataStmt) size=8 offset=16: ObjectEntity type: INTEGER(8) init:7017280452245743464_817 18integer :: jx, jy, jz19integer(8) :: kx20data jx/4habcd/21data jy/3habc/22data jz/5habcde/23data kx/'abcdefgh'/24end25