mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-20 03:55:48 -04:00

Summary: D25878, which added support for !absolute_symbol for normal X86 ISel, did not add support for materializing references to absolute symbols for X86 FastISel. This causes build failures because FastISel generates PC-relative relocations for absolute symbols. Fall back to normal ISel for references to !absolute_symbol GVs. Fix for PR38200. Reviewers: pcc, craig.topper Reviewed By: pcc Subscribers: hiraditya, llvm-commits, kcc Differential Revision: https://reviews.llvm.org/D50116 llvm-svn: 338599
29 lines
599 B
LLVM
29 lines
599 B
LLVM
; RUN: llc < %s | FileCheck %s
|
|
; RUN: llc -relocation-model=pic < %s | FileCheck %s
|
|
|
|
; Regression test for PR38200
|
|
|
|
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-unknown-linux-gnu"
|
|
|
|
@bit_mask8 = external hidden global i8, !absolute_symbol !0
|
|
|
|
declare void @f()
|
|
|
|
define void @foo8(i8* %ptr) noinline optnone {
|
|
%load = load i8, i8* %ptr
|
|
; CHECK: movl $bit_mask8, %ecx
|
|
%and = and i8 %load, ptrtoint (i8* @bit_mask8 to i8)
|
|
%icmp = icmp eq i8 %and, 0
|
|
br i1 %icmp, label %t, label %f
|
|
|
|
t:
|
|
call void @f()
|
|
ret void
|
|
|
|
f:
|
|
ret void
|
|
}
|
|
|
|
!0 = !{i64 0, i64 256}
|