mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
38048cdb1c
On ELF and COFF an alias is just another name for a position in the file. There is no way to refer to a position in another file, so an alias to undefined is meaningless. MachO currently doesn't support aliases. The spec has a N_INDR, which when implemented will have a different set of restrictions. Adding support for it shouldn't be harder than any other IR extension. For now, having the IR represent what is actually possible with current tools makes it easier to fix the design of GlobalAlias. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203705 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
508 B
LLVM
16 lines
508 B
LLVM
; RUN: opt < %s -instcombine -S | grep icmp
|
|
; PR1646
|
|
|
|
@__gthrw_pthread_cancel = alias weak i32 (i32)* @pthread_cancel ; <i32 (i32)*> [#uses=1]
|
|
@__gthread_active_ptr.5335 = internal constant i8* bitcast (i32 (i32)* @__gthrw_pthread_cancel to i8*) ; <i8**> [#uses=1]
|
|
define weak i32 @pthread_cancel(i32) {
|
|
ret i32 0
|
|
}
|
|
|
|
define i1 @__gthread_active_p() {
|
|
entry:
|
|
%tmp1 = load i8** @__gthread_active_ptr.5335, align 4 ; <i8*> [#uses=1]
|
|
%tmp2 = icmp ne i8* %tmp1, null ; <i1> [#uses=1]
|
|
ret i1 %tmp2
|
|
}
|