brintos

brintos / llvm-project-archived public Read only

0
0
Text · 250 B · 8bffb4c Raw
16 lines · plain
1; RUN: llvm-as < %s | llvm-dis > %t1.ll2; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll3; RUN: diff %t1.ll %t2.ll4 5declare void @bar()6 7define i32 @foo() {8        unreachable9}10 11define double @xyz() {12        call void @bar( )13        unreachable14}15 16