blob: 53d6a91e2a334c365b7270ff6f685dfd5554904d (
plain)
1
2
3
4
5
6
7
8
9
10
|
; RUN: llvm-as < %s | llc -mtriple=x86_64-apple-darwin -relocation-model=static | grep lea
; RUN: llvm-as < %s | llc -mtriple=x86_64-pc-linux-gnu -relocation-model=static | not grep lea
@v = external global i32, align 8
@v_addr = external global i32*, align 8
define void @t() nounwind optsize {
store i32* @v, i32** @v_addr, align 8
unreachable
}
|