mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
ea93ef7358
llvm-svn: 179036
11 lines
291 B
LLVM
11 lines
291 B
LLVM
; RUN: not llvm-as < %s > /dev/null 2> %t
|
|
; RUN: FileCheck %s --input-file=%t
|
|
; CHECK: 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
|
|
}
|