Enable llvm/test/ExecutionEngine/MCJIT also for cygwin.
[oota-llvm.git] / test / Verifier / 2006-10-15-AddrLabel.ll
1 ; RUN: not llvm-as < %s > /dev/null 2> %t
2 ; RUN: grep "basic block pointers are invalid" %t
3
4 define i32 @main() {
5          %foo  = call i8* %llvm.stacksave()
6          %foop = bitcast i8* %foo to label*
7          %nret = load label* %foop
8          br label %nret
9 }