diff options
| author | Chris Lattner <sabre@nondot.org> | 2003-06-16 11:59:34 +0000 | 
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2003-06-16 11:59:34 +0000 | 
| commit | 5a4237cbe4489d6e20562f2c7c8944690a5dbf3d (patch) | |
| tree | d3e68bef9518b78bd59a4752231c8bd6eb6b53b6 /llvm/test/Regression/Transforms/GCSE | |
| parent | 3aa325766a2124528993999b6c2583c9cedbfc99 (diff) | |
| download | bcm5719-llvm-5a4237cbe4489d6e20562f2c7c8944690a5dbf3d.tar.gz bcm5719-llvm-5a4237cbe4489d6e20562f2c7c8944690a5dbf3d.zip  | |
Fix testcase to work with store forwarding
llvm-svn: 6689
Diffstat (limited to 'llvm/test/Regression/Transforms/GCSE')
| -rw-r--r-- | llvm/test/Regression/Transforms/GCSE/RLE-Preserve.ll | 17 | 
1 files changed, 7 insertions, 10 deletions
diff --git a/llvm/test/Regression/Transforms/GCSE/RLE-Preserve.ll b/llvm/test/Regression/Transforms/GCSE/RLE-Preserve.ll index d3414880cd2..346eaf9291c 100644 --- a/llvm/test/Regression/Transforms/GCSE/RLE-Preserve.ll +++ b/llvm/test/Regression/Transforms/GCSE/RLE-Preserve.ll @@ -1,27 +1,24 @@  ; This testcase ensures that redundant loads are preserved when they are not   ; allowed to be eliminated. -; RUN: as < %s | dis > Output/%s.before -; RUN: as < %s | opt -load-vn -gcse | dis > Output/%s.after -; RUN: echo some output -; RUN: diff Output/%s.before Output/%s.after +; RUN: as < %s | opt -load-vn -gcse | dis | grep sub  ; -int "test1"(int* %P) { +int %test1(int* %P) {  	%A = load int* %P -	store int 1, int * %P +	store int 1, int* %P  	%B = load int* %P -	%C = add int %A, %B +	%C = sub int %A, %B  	ret int %C  } -int "test2"(int* %P) { +int %test2(int* %P) {  	%A = load int* %P  	br label %BB2  BB2: -	store int 5, int * %P +	store int 5, int* %P  	br label %BB3  BB3:  	%B = load int* %P -	%C = add int %A, %B +	%C = sub int %A, %B  	ret int %C  }  | 

