Home | History | Annotate | Download | only in Windows
      1 ; RUN: llc -mtriple=thumbv7-windows-itanium -mcpu=cortex-a9 -o - %s \
      2 ; RUN:   | FileCheck %s -check-prefix CHECK-WIN
      3 
      4 ; RUN: llc -mtriple=thumbv7-windows-gnu -mcpu=cortex-a9 -o - %s \
      5 ; RUN:   | FileCheck %s -check-prefix CHECK-GNU
      6 
      7 define float @function(float %f, float %g) nounwind {
      8 entry:
      9   %h = fadd float %f, %g
     10   ret float %h
     11 }
     12 
     13 ; CHECK-WIN: vadd.f32 s0, s0, s1
     14 
     15 ; CHECK-GNU: vadd.f32 s0, s0, s1
     16 
     17