1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Fix bug in testcase now that load-vn is not built into gcse

llvm-svn: 3614
This commit is contained in:
Chris Lattner 2002-09-07 22:50:41 +00:00
parent 67dd76548b
commit 0333d57a31

View File

@ -2,7 +2,7 @@
; disambiguating some obvious cases. All loads should be removable in
; this testcase.
; RUN: if as < %s | opt -basicaa -gcse -instcombine -dce | dis | grep load
; RUN: if as < %s | opt -basicaa -load-vn -gcse -instcombine -dce | dis | grep load
; RUN: then exit 1
; RUN: else exit 0
; RUN: fi