Remove VISIBILITY_HIDDEN from this file.
[llvm/avr.git] / test / CodeGen / X86 / inline-asm-fpstack4.ll
blobc9122fad6cf77cbd4f5a6664c14741c3311c943d
1 ; RUN: llvm-as < %s | llc -march=x86
2 ; PR4484
4 declare x86_fp80 @ceil()
6 declare void @test(x86_fp80)
8 define void @test2(x86_fp80 %a) {
9 entry:
10         %0 = call x86_fp80 @ceil()
11         call void asm sideeffect "fistpl $0", "{st},~{st}"(x86_fp80 %a)
12         call void @test(x86_fp80 %0)
13         ret void