Define BR in the .td file now that Evan made tblgen smarter.
[oota-llvm.git] / lib / Target / PowerPC / PPCInstrFormats.td
index ef3cf1a7ab60044f59c81f24dfcab963659f780c..4d69c7700bab33f85bf52b4f65a0cbe86dc83202 100644 (file)
@@ -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;