brintos

brintos / llvm-project-archived public Read only

0
0
Text · 254 B · 9a6f374 Raw
13 lines · plain
1; REQUIRES: asserts2; RUN: not --crash llvm-as %s -o /dev/null 2>&1 | FileCheck %s3 4define void @f(token %A, token %B) {5entry:6  br label %bb7 8bb:9  %phi = phi token [ %A, %bb ], [ %B, %entry]10; CHECK: PHI nodes cannot have token type!11  br label %bb12}13