diff options
Diffstat (limited to 'llvm/test/Transforms/ScalarRepl/2003-05-30-InvalidIndices.ll')
-rw-r--r-- | llvm/test/Transforms/ScalarRepl/2003-05-30-InvalidIndices.ll | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/llvm/test/Transforms/ScalarRepl/2003-05-30-InvalidIndices.ll b/llvm/test/Transforms/ScalarRepl/2003-05-30-InvalidIndices.ll new file mode 100644 index 00000000000..a66e575e88a --- /dev/null +++ b/llvm/test/Transforms/ScalarRepl/2003-05-30-InvalidIndices.ll @@ -0,0 +1,7 @@ +; RUN: llvm-upgrade < %s | llvm-as | opt -scalarrepl + +void %main() { + %E = alloca { { int, float, double, long }, { int, float, double, long } } ; <{ { int, float, double, long }, { int, float, double, long } }*> [#uses=1] + %tmp.151 = getelementptr { { int, float, double, long }, { int, float, double, long } }* %E, long 0, uint 1, uint 3 ; <long*> [#uses=0] + ret void +} |