1 ; RUN: not llvm-as < %s -o /dev/null 2>&1 | FileCheck %s 2 3 declare void @f() 4 5 define void @g() { 6 call void @f() align 8 7 ; CHECK: error: call instructions may not have an alignment 8 ret void 9 } 10