brintos

brintos / llvm-project-archived public Read only

0
0
Text · 406 B · 1ce0281 Raw
17 lines · plain
1; RUN: llc -mtriple=thumbv7-windows-itanium -mcpu=cortex-a9 -o - %s \2; RUN:   | FileCheck %s -check-prefix CHECK-WIN3 4; RUN: llc -mtriple=thumbv7-windows-gnu -mcpu=cortex-a9 -o - %s \5; RUN:   | FileCheck %s -check-prefix CHECK-GNU6 7define float @function(float %f, float %g) nounwind {8entry:9  %h = fadd float %f, %g10  ret float %h11}12 13; CHECK-WIN: vadd.f32 s0, s0, s114 15; CHECK-GNU: vadd.f32 s0, s0, s116 17