brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.1 KiB · df0166d Raw
28 lines · plain
1; RUN: llc -verify-machineinstrs -code-model=small < %s | FileCheck %s2target 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-v128:128:128-n32:64"3target triple = "powerpc64-unknown-linux-gnu"4 5; This test check if the TOC entry symbol name won't clash with global .LC06; and .LC2 symbols defined in the module.7 8@.LC0 = internal global [5 x i8] c".LC0\00"9@.LC2 = internal global [5 x i8] c".LC2\00"10 11define i32 @foo(double %X, double %Y) nounwind readnone {12  ; The 1.0 and 3.0 constants generate two TOC entries13  %cmp = fcmp oeq double %X, 1.000000e+0014  %conv = zext i1 %cmp to i3215  %cmp1 = fcmp oeq double %Y, 3.000000e+0016  %conv2 = zext i1 %cmp1 to i3217  %add = add nsw i32 %conv2, %conv18  ret i32 %add19}20 21; Check the creation of 2 .tc entries for both double constants. They22; avoid name clash with global constants .LC0 and .LC223; CHECK: .section	.toc,"aw",@progbits24; CHECK: .LC{{.*}}:25; CHECK-NEXT: .tc {{[\._a-zA-Z0-9]+}}[TC],{{[\._a-zA-Z0-9]+}}26; CHECK: .LC{{.*}}:27; CHECK-NEXT: .tc {{[\._a-zA-Z0-9]+}}[TC],{{[\._a-zA-Z0-9]+}}28