1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 06:22:51 +01:00
llvm-mirror/test/Regression/Transforms/InstCombine/getelementptr.ll
Chris Lattner cdb6a7e022 These tests should not run -dce pass to cleanup instcombine.
If instcombine is making dead instructions, ALL that should be used is -die

llvm-svn: 3221
2002-08-02 19:27:58 +00:00

30 lines
717 B
LLVM

; The %A getelementptr instruction should be eliminated here
; RUN: if as < %s | opt -instcombine -die | dis | grep getelementptr | grep '%A'
; RUN: then exit 1
; RUN: else exit 0
; RUN: fi
implementation
int *"foo1"(int * %I) { ; Test noop elimination
%A = getelementptr int* %I, uint 0
ret int * %A
}
int* %foo2(int* %I) { ; Test noop elimination
%A = getelementptr int* %I
ret int* %A
}
int* %foo3(int * %I) { ; Test that two array indexing geps fold
%A = getelementptr int* %I, uint 17
%B = getelementptr int* %A, uint 4
ret int* %B
}
int* %foo4({int} *%I) { ; Test that two getelementptr insts fold
%A = getelementptr {int}* %I, uint 1
%B = getelementptr {int}* %A, uint 0, ubyte 0
ret int* %B
}