diff options
Diffstat (limited to 'test/Transforms/InstCombine/2009-03-02-VarLengthArrayGEP.ll')
-rw-r--r-- | test/Transforms/InstCombine/2009-03-02-VarLengthArrayGEP.ll | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/test/Transforms/InstCombine/2009-03-02-VarLengthArrayGEP.ll b/test/Transforms/InstCombine/2009-03-02-VarLengthArrayGEP.ll deleted file mode 100644 index 1e136f5eab337..0000000000000 --- a/test/Transforms/InstCombine/2009-03-02-VarLengthArrayGEP.ll +++ /dev/null @@ -1,14 +0,0 @@ -; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep {getelementptr i32} -; PR3694 - -define i32 @e(i32 %m, i32 %n) nounwind { -entry: - %0 = alloca i32, i32 %n, align 4 ; <i32*> [#uses=2] - %1 = bitcast i32* %0 to [0 x i32]* ; <[0 x i32]*> [#uses=1] - call void @f(i32* %0) nounwind - %2 = getelementptr [0 x i32]* %1, i32 0, i32 %m ; <i32*> [#uses=1] - %3 = load i32* %2, align 4 ; <i32> [#uses=1] - ret i32 %3 -} - -declare void @f(i32*) |