diff options
author | Chris Lattner <sabre@nondot.org> | 2006-04-24 16:34:45 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-04-24 16:34:45 +0000 |
commit | 3046d54df246ee9156cd9270d14c760d2313a8f2 (patch) | |
tree | cdce03fbf6056c0d330a3f504e3073ad445d62ce /llvm/docs/WritingAnLLVMBackend.html | |
parent | 60bb622e4d8f30dac1f0f57ea0fcd0423c273631 (diff) | |
download | bcm5719-llvm-3046d54df246ee9156cd9270d14c760d2313a8f2.tar.gz bcm5719-llvm-3046d54df246ee9156cd9270d14c760d2313a8f2.zip |
Suggest looking at the SPARC backend. How weird is that?? :)
llvm-svn: 27957
Diffstat (limited to 'llvm/docs/WritingAnLLVMBackend.html')
-rw-r--r-- | llvm/docs/WritingAnLLVMBackend.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/docs/WritingAnLLVMBackend.html b/llvm/docs/WritingAnLLVMBackend.html index c487bc63571..8826ee7706b 100644 --- a/llvm/docs/WritingAnLLVMBackend.html +++ b/llvm/docs/WritingAnLLVMBackend.html @@ -61,8 +61,9 @@ convert the LLVM representation to machine assembly code or other languages.</p> <div class="doc_text"> -<p>In general, you want to follow the format of X86 or PowerPC (in -<tt>lib/Target</tt>).</p> +<p>In general, you want to follow the format of SPARC, X86 or PowerPC (in +<tt>lib/Target</tt>). SPARC is the simplest backend, and is RISC, so if +you're working on a RISC target, it is a good one to start with.</p> <p>To create a static compiler (one that emits text assembly), you need to implement the following:</p> |