Home | History | Annotate | Download | only in X86
      1 ; RUN: llc < %s | FileCheck %s
      2 
      3 ; CHECK: movswl
      4 
      5 target datalayout = "e-p:64:64"
      6 target triple = "x86_64-apple-darwin8"
      7 
      8 
      9 define void @bar(i16 zeroext  %A) {
     10         tail call void @foo( i16 signext %A   )
     11         ret void
     12 }
     13 declare void @foo(i16 signext )
     14 
     15