Skip to content

Commit

Permalink
LLVM interpreter: added a test for insert- extract- value
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190600 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
Elena Demikhovsky committed Sep 12, 2013
1 parent 3c5ce29 commit 19aa26d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions test/ExecutionEngine/test-interp-vec-insertextractvalue.ll
Original file line number Diff line number Diff line change
@@ -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
}

0 comments on commit 19aa26d

Please sign in to comment.