mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 07:22:55 +01:00
0b1f2f9d11
llvm-svn: 26378
10 lines
168 B
LLVM
10 lines
168 B
LLVM
; RUN: llvm-as < %s | llc -march=x86 | grep movl | wc -l | grep 1
|
|
|
|
%dst = global int 0
|
|
%ptr = global int* null
|
|
|
|
void %test() {
|
|
store int* %dst, int** %ptr
|
|
ret void
|
|
}
|