brintos

brintos / llvm-project-archived public Read only

0
0
Text · 514 B · 1838dc9 Raw
20 lines · plain
1; RUN: llc < %s -mcpu=corei72 3target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"4target triple = "x86_64-unknown-linux-gnu"5 6; PR 134287 8declare void @use(double)9 10define void @test() {11entry:12  call void @use(double 1.000000e+00)13  %A = icmp eq i64 undef, 214  %B = zext i1 %A to i3215  %C = sitofp i32 %B to double16  call void @use(double %C)17  call void @use(double 0.000000e+00)18  unreachable19}20