diff options
| author | Matthijs Kooijman <matthijs@stdin.nl> | 2008-07-16 12:57:25 +0000 |
|---|---|---|
| committer | Matthijs Kooijman <matthijs@stdin.nl> | 2008-07-16 12:57:25 +0000 |
| commit | f22f34f0cc3d9b3768c58f8fb4e823e994d76b0b (patch) | |
| tree | 2d54bf5bb79a221987a871c5025bb2bfc6be870b /llvm/test/Transforms | |
| parent | c9d4e06f3a20df010537c15e85dfc2a86dbd899f (diff) | |
| download | bcm5719-llvm-f22f34f0cc3d9b3768c58f8fb4e823e994d76b0b.tar.gz bcm5719-llvm-f22f34f0cc3d9b3768c58f8fb4e823e994d76b0b.zip | |
Add a few cases to instcombine's extractvalue testcase.
llvm-svn: 53675
Diffstat (limited to 'llvm/test/Transforms')
| -rw-r--r-- | llvm/test/Transforms/InstCombine/extractvalue.ll | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/llvm/test/Transforms/InstCombine/extractvalue.ll b/llvm/test/Transforms/InstCombine/extractvalue.ll index e84b102923e..59b996e130e 100644 --- a/llvm/test/Transforms/InstCombine/extractvalue.ll +++ b/llvm/test/Transforms/InstCombine/extractvalue.ll @@ -17,8 +17,22 @@ define i32 @foo() { %ns1.2 = insertvalue {i32, {i32, i32}} %ns1.1, i32 %v1, 1, 0 %ns1 = insertvalue {i32, {i32, i32}} %ns1.2, i32 %v2, 1, 1 %s2 = extractvalue {i32, {i32, i32}} %ns1, 1 + %v3 = extractvalue {i32, {i32, i32}} %ns1, 1, 1 call void @bar({i32, i32} %s2) - %v3 = extractvalue {i32, {i32, i32}} %ns1, 1, 1 - ret i32 %v3 + + ; Use nested extractvalues to get to a value + %s3 = extractvalue {i32, {i32, i32}} %ns1, 1 + %v4 = extractvalue {i32, i32} %s3, 1 + call void @bar({i32, i32} %s3) + + ; Use nested insertvalues to build a nested struct + %s4.1 = insertvalue {i32, i32} undef, i32 %v3, 0 + %s4 = insertvalue {i32, i32} %s4.1, i32 %v4, 1 + %ns2 = insertvalue {i32, {i32, i32}} undef, {i32, i32} %s4, 1 + + ; And now extract a single value from there + %v5 = extractvalue {i32, {i32, i32}} %ns2, 1, 1 + + ret i32 %v5 } |

