Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / Feature / attributes.ll
blob883a68ec9b4dd3868432b8251c707d5004c4e2ff
1 ; RUN: llvm-as < %s | llvm-dis > %t1.ll
2 ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
3 ; RUN: diff %t1.ll %t2.ll
5 @.str = private unnamed_addr constant [14 x i8] c"hello world!\0A\00", align 1
7 define void @foo() #0 {
8 entry:
9   %call = call i32 (ptr, ...) @printf(ptr @.str)
10   ret void
13 declare i32 @printf(ptr, ...)
15 attributes #0 = { nounwind ssp uwtable }