diff options
author | Chris Lattner <sabre@nondot.org> | 2009-11-10 22:02:09 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-11-10 22:02:09 +0000 |
commit | 103f2434b8ebb0aec11af141c37bfb02854a5420 (patch) | |
tree | e5acd49436dff4fb60b8adaff6bf3cbe7c5b2762 /test/Transforms/SCCP | |
parent | f235f13931835b3335f3f2ff2d3060381b93626c (diff) |
fix a crash in SCCP handling extractvalue of an array, pointed out and
tracked down by Stephan Reiter!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86726 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/SCCP')
-rw-r--r-- | test/Transforms/SCCP/crash.ll | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/Transforms/SCCP/crash.ll b/test/Transforms/SCCP/crash.ll index e34eacae84..2f6da1d726 100644 --- a/test/Transforms/SCCP/crash.ll +++ b/test/Transforms/SCCP/crash.ll @@ -22,3 +22,8 @@ bb34: return: ret void } + +define i32 @test2([4 x i32] %A) { + %B = extractvalue [4 x i32] %A, 1 + ret i32 %B +} |