Chris Lattner 186fb7d131 Don't require src/dst patterns to be able to fully resolve their types,
because information about one can help refine the other.  This allows us to
write:

def : Pat<(i32 (extload xaddr:$src, i8)),
          (LBZX xaddr:$src)>;

as:

def : Pat<(extload xaddr:$src, i8),
          (LBZX xaddr:$src)>;

because tblgen knows LBZX returns i32.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28865 91177308-0d34-0410-b5e6-96231b3b80d8
2006-06-20 00:31:27 +00:00
..
2006-03-31 21:54:11 +00:00
2006-03-31 21:54:11 +00:00
2006-03-31 21:54:11 +00:00
2006-03-31 21:54:11 +00:00
2006-03-31 21:54:11 +00:00