brintos

brintos / llvm-project-archived public Read only

0
0
Text · 192 B · 1d48bf6 Raw
10 lines · plain
1; RUN: not llvm-as < %s -o /dev/null 2>&1 | FileCheck %s2 3declare void @f()4 5define void @g() {6  call void @f() align 87; CHECK: Attribute 'align 8' does not apply to functions!8  ret void9}10