Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Assembler / unsupported-constexprs.ll
blob955aed64bc7de3ab3e4a269055a0dfb31793631b
1 ; RUN: split-file %s %t
2 ; RUN: not llvm-as < %t/extractvalue.ll 2>&1 | FileCheck %s --check-prefix=EXTRACTVALUE
3 ; RUN: not llvm-as < %t/insertvalue.ll 2>&1 | FileCheck %s --check-prefix=INSERTVALUE
5 ;--- extractvalue.ll
6 define i32 @extractvalue() {
7 ; EXTRACTVALUE: error: extractvalue constexprs are no longer supported
8   ret i32 extractvalue ({i32} {i32 3}, 0)
11 ;--- insertvalue.ll
12 define {i32} @insertvalue() {
13 ; INSERTVALUE: error: insertvalue constexprs are no longer supported
14   ret {i32} insertvalue ({i32} poison, i32 3, 0)