Mercurial > hg > CbC > CbC_llvm
view test/CodeGen/Hexagon/dadd.ll @ 146:3fc4d5c3e21e
set tail call flag for code segment in CGCAll
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 23 Dec 2018 19:23:36 +0900 |
parents | 803732b1fca8 |
children |
line wrap: on
line source
; RUN: llc -march=hexagon -mcpu=hexagonv5 < %s | FileCheck %s ; Check that we generate double precision floating point add in V5. ; CHECK: call __hexagon_adddf3 define i32 @main() nounwind { entry: %a = alloca double, align 8 %b = alloca double, align 8 %c = alloca double, align 8 store volatile double 1.540000e+01, double* %a, align 8 store volatile double 9.100000e+00, double* %b, align 8 %0 = load volatile double, double* %a, align 8 %1 = load volatile double, double* %b, align 8 %add = fadd double %0, %1 store double %add, double* %c, align 8 ret i32 0 }