mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-12 17:32:19 +00:00
Make sure to run these tests with load value #'ing
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3530 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f9017b810a
commit
1a24282b5c
@ -1,7 +1,7 @@
|
|||||||
; This testcase ensures that redundant loads are eliminated when they should
|
; This testcase ensures that redundant loads are eliminated when they should
|
||||||
; be. All RL variables (redundant loads) should be eliminated.
|
; be. All RL variables (redundant loads) should be eliminated.
|
||||||
;
|
;
|
||||||
; RUN: if as < %s | opt -gcse | dis | grep %RL
|
; RUN: if as < %s | opt -load-vn -gcse | dis | grep %RL
|
||||||
; RUN: then exit 1
|
; RUN: then exit 1
|
||||||
; RUN: else exit 0
|
; RUN: else exit 0
|
||||||
; RUN: fi
|
; RUN: fi
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
; This testcase ensures that redundant loads are preserved when they are not
|
; This testcase ensures that redundant loads are preserved when they are not
|
||||||
; allowed to be eliminated.
|
; allowed to be eliminated.
|
||||||
; RUN: as < %s | dis > Output/%s.before
|
; RUN: as < %s | dis > Output/%s.before
|
||||||
; RUN: as < %s | opt -gcse | dis > Output/%s.after
|
; RUN: as < %s | opt -load-vn -gcse | dis > Output/%s.after
|
||||||
|
; RUN: echo some output
|
||||||
; RUN: diff Output/%s.before Output/%s.after
|
; RUN: diff Output/%s.before Output/%s.after
|
||||||
;
|
;
|
||||||
int "test1"(int* %P) {
|
int "test1"(int* %P) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user