diff options
author | Chris Lattner <sabre@nondot.org> | 2005-12-04 18:42:54 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-12-04 18:42:54 +0000 |
commit | 1e48478557587d3931d5e8277fe79719d78ab245 (patch) | |
tree | f5f0d50655732f5cf3adea4848c967ef00f372fc /lib/Target/PowerPC/PPCInstrFormats.td | |
parent | d35b8c1adb27f5f7c4af8585bfd78605799a457f (diff) |
Define BR in the .td file now that Evan made tblgen smarter.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24589 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCInstrFormats.td')
-rw-r--r-- | lib/Target/PowerPC/PPCInstrFormats.td | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/PowerPC/PPCInstrFormats.td b/lib/Target/PowerPC/PPCInstrFormats.td index ef3cf1a7ab..4d69c7700b 100644 --- a/lib/Target/PowerPC/PPCInstrFormats.td +++ b/lib/Target/PowerPC/PPCInstrFormats.td @@ -31,8 +31,9 @@ class I<bits<6> opcode, dag OL, string asmstr, InstrItinClass itin> // 1.7.1 I-Form class IForm<bits<6> opcode, bit aa, bit lk, dag OL, string asmstr, - InstrItinClass itin> + InstrItinClass itin, list<dag> pattern> : I<opcode, OL, asmstr, itin> { + let Pattern = pattern; bits<24> LI; let Inst{6-29} = LI; |