Fix a bug in GVN that Duncan noticed, where we potentially need to insert a
[oota-llvm.git] / test / Assembler / 2007-08-06-AliasInvalid.ll
1 ; RUN: not llvm-as < %s > /dev/null |& grep {Invalid type for reference to global}
2 ; PR1577
3
4 @anInt = global i32 1 alias i32 @anAlias
5 define i32 @main() {
6    ret i32 0 
7 }