diff options
-rw-r--r-- | llvm/docs/TableGen/index.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/TableGen/index.rst b/llvm/docs/TableGen/index.rst index 5ba555ac2d2..e6800fac64e 100644 --- a/llvm/docs/TableGen/index.rst +++ b/llvm/docs/TableGen/index.rst @@ -224,7 +224,7 @@ definitions of a particular class, such as "Instruction". class ProcNoItin<string Name, list<SubtargetFeature> Features> : Processor<Name, NoItineraries, Features>; - + Here, the class ProcNoItin, receiving parameters `Name` of type `string` and a list of target features is specializing the class Processor by passing the arguments down as well as hard-coding NoItineraries. |