diff options
author | Chris Lattner <sabre@nondot.org> | 2010-09-02 22:35:33 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-09-02 22:35:33 +0000 |
commit | 042ff0358df1af7a36bf863afdd2165ddd05857a (patch) | |
tree | aa27c29077c33b3282e3e8673c6e73648396bac6 /test/Transforms/ConstProp | |
parent | 776339ee273c55beb3073a6dee5a8d34e4c34493 (diff) | |
download | external_llvm-042ff0358df1af7a36bf863afdd2165ddd05857a.zip external_llvm-042ff0358df1af7a36bf863afdd2165ddd05857a.tar.gz external_llvm-042ff0358df1af7a36bf863afdd2165ddd05857a.tar.bz2 |
remove some noise from tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112889 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/ConstProp')
-rw-r--r-- | test/Transforms/ConstProp/constant-expr.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Transforms/ConstProp/constant-expr.ll b/test/Transforms/ConstProp/constant-expr.ll index 9963032..556ed1f 100644 --- a/test/Transforms/ConstProp/constant-expr.ll +++ b/test/Transforms/ConstProp/constant-expr.ll @@ -16,9 +16,9 @@ @E = global i1 udiv (i1 icmp ult (i8* @X, i8* @Y), i1 icmp ult (i8* @X, i8* @Z)) ; CHECK: @E = global i1 icmp ult (i8* @X, i8* @Y) @F = global i1 srem (i1 icmp ult (i8* @X, i8* @Y), i1 icmp ult (i8* @X, i8* @Z)) -; CHECK: @F = global i1 false ; <i1*> [#uses=0] +; CHECK: @F = global i1 false @G = global i1 urem (i1 icmp ult (i8* @X, i8* @Y), i1 icmp ult (i8* @X, i8* @Z)) -; CHECK: @G = global i1 false ; <i1*> [#uses=0] +; CHECK: @G = global i1 false @H = global i1 icmp ule (i32* bitcast (i8* @X to i32*), i32* bitcast (i8* @Y to i32*)) ; CHECK: @H = global i1 icmp ule (i8* @X, i8* @Y) |