diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2010-07-11 17:01:17 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2010-07-11 17:01:17 +0000 |
commit | c4227f13623a98cea57b9be2bb2c99bc19268f0c (patch) | |
tree | bacab156d84407c45b5ac2465a651590a2d423b7 /llvm/test/TableGen | |
parent | 1da1cfccb1fe53e3197bc7c95a3f2c1e5bec9266 (diff) | |
download | bcm5719-llvm-c4227f13623a98cea57b9be2bb2c99bc19268f0c.tar.gz bcm5719-llvm-c4227f13623a98cea57b9be2bb2c99bc19268f0c.zip |
Remove TargetInstrInfo::copyRegToReg entirely.
Targets must now implement TargetInstrInfo::copyPhysReg instead. There is no
longer a default implementation forwarding to copyRegToReg.
llvm-svn: 108095
Diffstat (limited to 'llvm/test/TableGen')
-rw-r--r-- | llvm/test/TableGen/TargetInstrInfo.td | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/test/TableGen/TargetInstrInfo.td b/llvm/test/TableGen/TargetInstrInfo.td index 2871eb81df9..146ef6fd768 100644 --- a/llvm/test/TableGen/TargetInstrInfo.td +++ b/llvm/test/TableGen/TargetInstrInfo.td @@ -83,8 +83,7 @@ class Inst<dag opnds, string asmstr, bits<8> opcode, // the pattern. // 6. Address expressions should become first-class entities. -// Simple copy instruction. isMoveInstr could easily be inferred from this, -// as could TargetRegisterInfo::copyRegToReg. +// Simple copy instruction. def MOV8rr : Inst<(ops R8:$dst, R8:$src), "mov $dst, $src", 0x88, MRMDestReg, [(set R8:$dst, R8:$src)]>; |