You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
; RUN: llc < %s -mtriple=arm64-apple-ios | FileCheck %s
|
|
|
|
@x = extern_weak global i32
|
|
|
|
define i32 @fn() nounwind ssp {
|
|
; CHECK-LABEL: fn:
|
|
; CHECK: .weak_reference
|
|
%val = load i32, i32* @x, align 4
|
|
ret i32 %val
|
|
}
|