brintos

brintos / llvm-project-archived public Read only

0
0
Text · 355 B · 7f6c0d1 Raw
16 lines · plain
1; Test that asm goto can be compiled.2;3; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z144 5define i32 @c() {6entry:7  callbr void asm sideeffect "j d", "!i"()8          to label %asm.fallthrough [label %d]9 10asm.fallthrough:               ; preds = %entry11  br label %d12 13d:                             ; preds = %asm.fallthrough, %entry14  ret i32 undef15}16