brintos

brintos / llvm-project-archived public Read only

0
0
Text · 323 B · 4c9602a Raw
11 lines · plain
1; RUN: llc -verify-machineinstrs < %s | FileCheck %s2 3target triple = "powerpc-unknown-linux-gnu"4 5; Dead argument should reserve an FP register.6define double @bar(double %DEAD, double %X, double %Y) {7; CHECK: fadd 1, 2, 38        %tmp.2 = fadd double %X, %Y              ; <double> [#uses=1]9        ret double %tmp.210}11