mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
5fa04f2707
llvm-svn: 92740
9 lines
250 B
LLVM
9 lines
250 B
LLVM
; RUN: not llvm-as < %s > /dev/null |& grep {basic block pointers are invalid}
|
|
|
|
define i32 @main() {
|
|
%foo = call i8* %llvm.stacksave()
|
|
%foop = bitcast i8* %foo to label*
|
|
%nret = load label* %foop
|
|
br label %nret
|
|
}
|