Add a comment about the PPC Interpretation64Bit bit
authorHal Finkel <hfinkel@anl.gov>
Fri, 12 Apr 2013 18:17:38 +0000 (18:17 +0000)
committerHal Finkel <hfinkel@anl.gov>
Fri, 12 Apr 2013 18:17:38 +0000 (18:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179391 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/PowerPC/PPCInstrFormats.td

index 37e26726f76e1f23d0fb58ebe8f4201b19028137..36f193be993698c03e4773aa78f158550939526e 100644 (file)
@@ -38,6 +38,11 @@ class I<bits<6> opcode, dag OOL, dag IOL, string asmstr, InstrItinClass itin>
 
   // Fields used for relation models.
   string BaseName = "";
+
+  // For cases where multiple instruction definitions really represent the
+  // same underlying instruction but with one definition for 64-bit arguments
+  // and one for 32-bit arguments, this bit breaks the degeneracy between
+  // the two forms and allows TableGen to generate mapping tables.
   bit Interpretation64Bit = 0;
 }