diff options
author | Chris Lattner <sabre@nondot.org> | 2003-06-29 01:09:07 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-06-29 01:09:07 +0000 |
commit | dbb6cd12ebf2429ea7f4f632c4447951b870d0ff (patch) | |
tree | c2693a54053ae4355990c9c53972a7687dbeebb8 | |
parent | 4fe77cdcf2c79a6f31a7953675b438fbdb9ce94f (diff) |
Fix testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6976 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Analysis/DSGraph/incompletenode.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Analysis/DSGraph/incompletenode.ll b/test/Analysis/DSGraph/incompletenode.ll index 44934a2c1c..c6f0ad79a2 100644 --- a/test/Analysis/DSGraph/incompletenode.ll +++ b/test/Analysis/DSGraph/incompletenode.ll @@ -1,14 +1,14 @@ -; This test is failing because the globals X and Y are marked incomplete +; This test was failing because the globals X and Y are marked incomplete ; in the TD graph for %test -; RUN: as < %s | opt -no-aa -ds-aa -load-vn -gcse | dis | not grep seteq +; RUN: as < %s | opt -no-aa -ds-aa -load-vn -gcse -instcombine | dis | not grep seteq %X = internal global int 20 %Y = internal global int* null implementation -bool %test(int** %P) { +internal bool %test(int** %P) { %A = load int** %P ;; We know P == Y! %B = load int** %Y ;; B = A %c = seteq int* %A, %B ;; Always true |