brintos

brintos / llvm-project-archived public Read only

0
0
Text · 534 B · 8485924 Raw
26 lines · plain
1# RUN: not llc -mtriple=x86_64 -run-pass none -o /dev/null %s 2>&1 | FileCheck %s2 3--- |4 5  define double @test(double %a, float %b) {6  entry:7    %c = fadd double %a, 3.250000e+008    ret double %c9  }10 11...12---13name:            test14constants:15  - id:          016    value:       'double 3.250000e+00'17# CHECK: [[@LINE+1]]:18: redefinition of constant pool item '%const.0'18  - id:          019    value:       'double 3.250000e+00'20body: |21  bb.0.entry:22    %xmm0 = ADDSDrm killed %xmm0, %rip, 1, _, %const.0, _23    RET64 %xmm024...25 26