From 5489e93101cf0ad49a35743d7830ecf6e8b66589 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 1 Jun 2004 18:35:00 +0000 Subject: [PATCH] Finish the thought that got interrupted when my train arrived. :) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13923 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/CodeGenerator.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/CodeGenerator.html b/docs/CodeGenerator.html index 8480d34d3a2..b0ed0499fa5 100644 --- a/docs/CodeGenerator.html +++ b/docs/CodeGenerator.html @@ -203,12 +203,13 @@ targets with unusual requirements can be supported with custom passes as needed.
-

The target description classes require a detailed descriptions of the target +

The target description classes require a detailed description of the target architecture. These target descriptions often have a large amount of common information (e.g., an add instruction is almost identical to a sub instruction). In order to allow the maximum amount of commonality to be factored out, the LLVM code generator uses the TableGen tool to -allow +describe big chunks of the target machine, which allows the use of domain- and +target-specific abstractions to reduce the amount of repetition.

-- 2.34.1