Chris Lattner
e19e4baf3b
teach phi translation of GEPs to simplify geps like 'gep x, 0'.
This allows us to compile the example from PR5313 into:
LBB1_2: ## %bb
incl %ecx
movb %al, (%rsi)
movslq %ecx, %rax
movb (%rdi,%rax), %al
testb %al, %al
jne LBB1_2
instead of:
LBB1_2: ## %bb
movslq %eax, %rcx
incl %eax
movb (%rdi,%rcx), %cl
movb %cl, (%rsi)
movslq %eax, %rcx
cmpb $0, (%rdi,%rcx)
jne LBB1_2
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@89981 91177308-0d34-0410-b5e6-96231b3b80d8
2009-11-27 00:34:38 +00:00
..
2009-11-26 19:25:46 +00:00
2009-09-08 23:44:24 +00:00
2009-10-21 23:29:12 +00:00
2009-10-17 23:52:26 +00:00
2009-09-11 18:01:28 +00:00
2009-09-07 19:26:18 +00:00
2009-11-26 00:35:01 +00:00
2009-11-11 03:10:03 +00:00
2009-11-08 02:23:15 +00:00
2009-10-28 05:53:48 +00:00
2009-10-22 12:53:25 +00:00
2009-11-20 02:52:08 +00:00
2009-11-25 23:50:09 +00:00
2009-04-22 10:39:51 +00:00
2009-10-13 20:45:18 +00:00
2009-09-05 11:34:46 +00:00
2009-09-13 01:41:18 +00:00
2009-09-15 15:58:07 +00:00
2009-11-08 09:07:42 +00:00
2009-10-16 16:30:02 +00:00
2009-10-24 23:52:07 +00:00
2009-10-24 20:32:36 +00:00
2009-11-22 03:58:57 +00:00
2009-11-27 00:34:38 +00:00
2009-11-08 09:07:51 +00:00
2009-08-25 15:38:29 +00:00
2009-11-08 09:29:52 +00:00
2009-11-08 09:08:00 +00:00
2009-09-22 07:38:33 +00:00
2009-11-16 23:32:30 +00:00
2009-08-25 15:38:29 +00:00
2009-11-08 09:29:52 +00:00