Home | History | Annotate | Download | only in Windows
      1 ; RUN: llc -mtriple=thumbv7-windows -filetype asm -o - %s | FileCheck %s
      2 
      3 @i = internal global i32 0, align 4
      4 
      5 ; Function Attrs: minsize
      6 define arm_aapcs_vfpcc i32* @function() #0 {
      7 entry:
      8   ret i32* @i
      9 }
     10 
     11 attributes #0 = { minsize }
     12 
     13 ; CHECK: function:
     14 ; CHECK:   movw  r0, :lower16:i
     15 ; CHECK:   movt  r0, :upper16:i
     16 ; CHECK:   bx    lr
     17