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 | bb451461ecd2015c4c1ce3bc896db226106aaaa0 (patch) | |
tree | 7c92b89427a0c9dedee601398c9afe355b09e4a6 /llvm/test/Transforms/ConstProp/constant-expr.ll | |
parent | 2adf2f27147218379fd31e2ec5e9539602cd0d7e (diff) | |
download | bcm5719-llvm-bb451461ecd2015c4c1ce3bc896db226106aaaa0.tar.gz bcm5719-llvm-bb451461ecd2015c4c1ce3bc896db226106aaaa0.zip |
remove some noise from tests.
llvm-svn: 112889
Diffstat (limited to 'llvm/test/Transforms/ConstProp/constant-expr.ll')
-rw-r--r-- | llvm/test/Transforms/ConstProp/constant-expr.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Transforms/ConstProp/constant-expr.ll b/llvm/test/Transforms/ConstProp/constant-expr.ll index 996303293d1..556ed1f652a 100644 --- a/llvm/test/Transforms/ConstProp/constant-expr.ll +++ b/llvm/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) |