diff options
author | Chris Lattner <sabre@nondot.org> | 2008-04-19 21:58:19 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-04-19 21:58:19 +0000 |
commit | 334d33cad168573da4fa3b3a72397449480b37f5 (patch) | |
tree | e70f6c4f56f683f249c510d744645ad9e6ca20ec /llvm/test/Integer | |
parent | 6072ead8e230ae7d3879444667adb1a372c4f74f (diff) | |
download | bcm5719-llvm-334d33cad168573da4fa3b3a72397449480b37f5.tar.gz bcm5719-llvm-334d33cad168573da4fa3b3a72397449480b37f5.zip |
refactor handling of symbolic constant folding, picking up
a few new cases( see Integer/a1.ll), but not anything that
would happen in practice.
llvm-svn: 49965
Diffstat (limited to 'llvm/test/Integer')
-rw-r--r-- | llvm/test/Integer/a1.ll.out | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/Integer/a1.ll.out b/llvm/test/Integer/a1.ll.out index 0957c755b90..93ca11acd3e 100644 --- a/llvm/test/Integer/a1.ll.out +++ b/llvm/test/Integer/a1.ll.out @@ -10,10 +10,10 @@ @j = constant i1 undef ; <i1*> [#uses=0] @m = constant i1 undef ; <i1*> [#uses=0] @n = constant i1 true ; <i1*> [#uses=0] -@o = constant i1 sdiv (i1 true, i1 true) ; <i1*> [#uses=0] -@p = constant i1 sdiv (i1 true, i1 true) ; <i1*> [#uses=0] +@o = constant i1 true ; <i1*> [#uses=0] +@p = constant i1 true ; <i1*> [#uses=0] @q = constant i1 true ; <i1*> [#uses=0] @r = constant i1 true ; <i1*> [#uses=0] -@s = constant i1 srem (i1 true, i1 true) ; <i1*> [#uses=0] +@s = constant i1 false ; <i1*> [#uses=0] @t = constant i1 false ; <i1*> [#uses=0] -@u = constant i1 srem (i1 true, i1 true) ; <i1*> [#uses=0] +@u = constant i1 false ; <i1*> [#uses=0] |