OSDN Git Service

Allow types to be omitted in output patterns.
authorJakob Stoklund Olesen <stoklund@2pi.dk>
Sun, 24 Mar 2013 19:37:00 +0000 (19:37 +0000)
committerJakob Stoklund Olesen <stoklund@2pi.dk>
Sun, 24 Mar 2013 19:37:00 +0000 (19:37 +0000)
commit8e3cb3ee0c6dd582f4ee78135cef2f33f6893395
tree55f04fd71b011c0d160f5a3cab0b206c44532f74
parent4717fd4c0faf454ff37f133709320d0cfec0da89
Allow types to be omitted in output patterns.

This syntax is now preferred:

  def : Pat<(subc i32:$b, i32:$c), (SUBCCrr $b, $c)>;

There is no reason to repeat the types in the output pattern.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177844 91177308-0d34-0410-b5e6-96231b3b80d8
utils/TableGen/CodeGenDAGPatterns.cpp
utils/TableGen/DAGISelMatcherGen.cpp