[llvm-readelf/llvm-objdump] - Improve/refactor the implementation of SHT_LLVM_ADDRSIG...
[llvm-complete.git] / test / CodeGen / Hexagon / dfp.ll
blobe4fe10bad0bd75611cff975cebafb15f9b9349bc
1 ; RUN: llc -march=hexagon < %s | FileCheck %s
3 ; CHECK-LABEL: df_add:
4 ; CHECK: dfadd
5 define double @df_add(double %x, double %y) local_unnamed_addr #0 {
6 entry:
7   %add = fadd double %x, %y
8   ret double %add
11 ; CHECK-LABEL: df_sub:
12 ; CHECK: dfsub
13 define double @df_sub(double %x, double %y) local_unnamed_addr #0 {
14 entry:
15   %sub = fsub double %x, %y
16   ret double %sub
19 attributes #0 = { norecurse nounwind readnone "target-cpu"="hexagonv66" }