Home | History | Annotate | Download | only in X86
      1 ; RUN: llc -mtriple=x86_64-mingw32 < %s | FileCheck %s
      2 ; CHECK: subq    $40, %rsp
      3 ; CHECK: movaps  %xmm8, (%rsp)
      4 ; CHECK: movaps  %xmm7, 16(%rsp)
      5 
      6 define i32 @a() nounwind {
      7 entry:
      8         tail call void asm sideeffect "", "~{xmm7},~{xmm8},~{dirflag},~{fpsr},~{flags}"() nounwind
      9         ret i32 undef
     10 }
     11