mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 22:04:55 +00:00
6f09fcf5da
This matches clang, so default options in llc and friends are now closer to clang's defaults. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140863 91177308-0d34-0410-b5e6-96231b3b80d8
13 lines
289 B
LLVM
13 lines
289 B
LLVM
; RUN: llc < %s -relocation-model=dynamic-no-pic -mtriple=arm-apple-darwin | FileCheck %s
|
|
|
|
@x = weak hidden global i32 0 ; <i32*> [#uses=1]
|
|
|
|
define i32 @t() nounwind readonly {
|
|
entry:
|
|
; CHECK: t:
|
|
; CHECK: ldr
|
|
; CHECK-NEXT: ldr
|
|
%0 = load i32* @x, align 4 ; <i32> [#uses=1]
|
|
ret i32 %0
|
|
}
|