Use the llvm-upgrade program to upgrade llvm assembly.
[oota-llvm.git] / test / CodeGen / Generic / global-ret0.ll
1 ; RUN: llvm-upgrade < %s | llvm-as | llc
2
3 %g = global int 0
4
5 int %main() {  
6   %h = load int* %g
7   ret int %h
8 }