llvm-6502/test/CodeGen/X86/store-global-address.ll
2006-12-02 04:23:10 +00:00

10 lines
183 B
LLVM

; RUN: llvm-upgrade < %s | llvm-as | 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
}