blob: 1ce02813dfc2fdd824b2b7b73b7938139ddc1983 [file] [log] [blame]
Yaron Kerend1ba2d92015-07-14 05:51:05 +00001; 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
Saleem Abdulrasoolcd130822014-04-02 20:32:05 +00006
7define float @function(float %f, float %g) nounwind {
8entry:
9 %h = fadd float %f, %g
10 ret float %h
11}
12
Yaron Kerend1ba2d92015-07-14 05:51:05 +000013; CHECK-WIN: vadd.f32 s0, s0, s1
14
15; CHECK-GNU: vadd.f32 s0, s0, s1
Saleem Abdulrasoolcd130822014-04-02 20:32:05 +000016