blob: dba82b7e758e0d6284f5a35b6be3ce783e6512ce [file] [log] [blame]
Chris Lattner5abaa0c2002-05-16 01:03:12 +00001; This testcase ensures that redundant loads are eliminated when they should
2; be. All RL variables (redundant loads) should be eliminated.
3;
Misha Brukmane78760e2003-09-16 15:29:54 +00004; RUN: llvm-as < %s | opt -load-vn -gcse | llvm-dis | not grep %RL
Chris Lattner5abaa0c2002-05-16 01:03:12 +00005;
6int "test1"(int* %P) {
7 %A = load int* %P
8 %RL = load int* %P
9 %C = add int %A, %RL
10 ret int %C
11}
12
13int "test2"(int* %P) {
14 %A = load int* %P
15 br label %BB2
16BB2:
17 br label %BB3
18BB3:
19 %RL = load int* %P
20 %B = add int %A, %RL
21 ret int %B
22}
23