You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
298 B
11 lines
298 B
4 months ago
|
; 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, label* %foop
|
||
|
br label %nret
|
||
|
}
|