You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.246
Former-commit-id: 0c7ce5b1a7851e13f22acfd379b7f9fb304e4833
This commit is contained in:
parent
a7724cd563
commit
279aa8f685
21
external/llvm/test/ExecutionEngine/test-interp-vec-insertextractvalue.ll
vendored
Normal file
21
external/llvm/test/ExecutionEngine/test-interp-vec-insertextractvalue.ll
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
; RUN: %lli -force-interpreter=true %s > /dev/null
|
||||
|
||||
define i32 @main() {
|
||||
|
||||
%s1 = insertvalue { i32, { float, double} } undef, i32 9, 0
|
||||
%s2 = insertvalue { i32, { float, double} } %s1, float 3.0, 1, 0
|
||||
%s3 = insertvalue { i32, { float, double} } %s2, double 5.0, 1, 1
|
||||
|
||||
%s4 = extractvalue { i32, { float, double} } %s3, 1
|
||||
|
||||
%a1 = extractvalue { i32, { float, double} } %s3, 0
|
||||
|
||||
%a2 = extractvalue { i32, { float, double} } %s3, 1, 0
|
||||
%a3 = extractvalue { i32, { float, double} } %s3, 1, 1
|
||||
%a4 = extractvalue { float, double} %s4, 0
|
||||
%a5 = extractvalue { float, double} %s4, 1
|
||||
|
||||
%aa = fpext float %a4 to double
|
||||
|
||||
ret i32 0
|
||||
}
|
Reference in New Issue
Block a user