mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-07 07:41:54 +00:00
[docs] Remove explicit authorship.
In the spirit of r172109. Version control keeps a far more detailed record of authorship anyways. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176807 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
be15cdda54
commit
6ccdfc54ba
@ -10,8 +10,6 @@ Architecture & Platform Information for Compiler Writers
|
|||||||
This document is a work-in-progress. Additions and clarifications are
|
This document is a work-in-progress. Additions and clarifications are
|
||||||
welcome.
|
welcome.
|
||||||
|
|
||||||
Compiled by `Misha Brukman <http://misha.brukman.net>`_.
|
|
||||||
|
|
||||||
Hardware
|
Hardware
|
||||||
========
|
========
|
||||||
|
|
||||||
|
@ -34,9 +34,6 @@ LLVM's Analysis and Transform Passes
|
|||||||
.. contents::
|
.. contents::
|
||||||
:local:
|
:local:
|
||||||
|
|
||||||
Written by `Reid Spencer <mailto:rspencer@x10sys.com>`_
|
|
||||||
and Gordon Henriksen
|
|
||||||
|
|
||||||
Introduction
|
Introduction
|
||||||
============
|
============
|
||||||
|
|
||||||
|
@ -5,8 +5,6 @@ Kaleidoscope: Tutorial Introduction and the Lexer
|
|||||||
.. contents::
|
.. contents::
|
||||||
:local:
|
:local:
|
||||||
|
|
||||||
Written by `Chris Lattner <mailto:sabre@nondot.org>`_
|
|
||||||
|
|
||||||
Tutorial Introduction
|
Tutorial Introduction
|
||||||
=====================
|
=====================
|
||||||
|
|
||||||
|
@ -5,8 +5,6 @@ Kaleidoscope: Implementing a Parser and AST
|
|||||||
.. contents::
|
.. contents::
|
||||||
:local:
|
:local:
|
||||||
|
|
||||||
Written by `Chris Lattner <mailto:sabre@nondot.org>`_
|
|
||||||
|
|
||||||
Chapter 2 Introduction
|
Chapter 2 Introduction
|
||||||
======================
|
======================
|
||||||
|
|
||||||
|
@ -5,8 +5,6 @@ Kaleidoscope: Code generation to LLVM IR
|
|||||||
.. contents::
|
.. contents::
|
||||||
:local:
|
:local:
|
||||||
|
|
||||||
Written by `Chris Lattner <mailto:sabre@nondot.org>`_
|
|
||||||
|
|
||||||
Chapter 3 Introduction
|
Chapter 3 Introduction
|
||||||
======================
|
======================
|
||||||
|
|
||||||
|
@ -5,8 +5,6 @@ Kaleidoscope: Adding JIT and Optimizer Support
|
|||||||
.. contents::
|
.. contents::
|
||||||
:local:
|
:local:
|
||||||
|
|
||||||
Written by `Chris Lattner <mailto:sabre@nondot.org>`_
|
|
||||||
|
|
||||||
Chapter 4 Introduction
|
Chapter 4 Introduction
|
||||||
======================
|
======================
|
||||||
|
|
||||||
|
@ -5,8 +5,6 @@ Kaleidoscope: Extending the Language: Control Flow
|
|||||||
.. contents::
|
.. contents::
|
||||||
:local:
|
:local:
|
||||||
|
|
||||||
Written by `Chris Lattner <mailto:sabre@nondot.org>`_
|
|
||||||
|
|
||||||
Chapter 5 Introduction
|
Chapter 5 Introduction
|
||||||
======================
|
======================
|
||||||
|
|
||||||
|
@ -5,8 +5,6 @@ Kaleidoscope: Extending the Language: User-defined Operators
|
|||||||
.. contents::
|
.. contents::
|
||||||
:local:
|
:local:
|
||||||
|
|
||||||
Written by `Chris Lattner <mailto:sabre@nondot.org>`_
|
|
||||||
|
|
||||||
Chapter 6 Introduction
|
Chapter 6 Introduction
|
||||||
======================
|
======================
|
||||||
|
|
||||||
|
@ -5,8 +5,6 @@ Kaleidoscope: Extending the Language: Mutable Variables
|
|||||||
.. contents::
|
.. contents::
|
||||||
:local:
|
:local:
|
||||||
|
|
||||||
Written by `Chris Lattner <mailto:sabre@nondot.org>`_
|
|
||||||
|
|
||||||
Chapter 7 Introduction
|
Chapter 7 Introduction
|
||||||
======================
|
======================
|
||||||
|
|
||||||
|
@ -5,8 +5,6 @@ Kaleidoscope: Conclusion and other useful LLVM tidbits
|
|||||||
.. contents::
|
.. contents::
|
||||||
:local:
|
:local:
|
||||||
|
|
||||||
Written by `Chris Lattner <mailto:sabre@nondot.org>`_
|
|
||||||
|
|
||||||
Tutorial Conclusion
|
Tutorial Conclusion
|
||||||
===================
|
===================
|
||||||
|
|
||||||
|
@ -5,9 +5,6 @@ Kaleidoscope: Tutorial Introduction and the Lexer
|
|||||||
.. contents::
|
.. contents::
|
||||||
:local:
|
:local:
|
||||||
|
|
||||||
Written by `Chris Lattner <mailto:sabre@nondot.org>`_ and `Erick
|
|
||||||
Tryzelaar <mailto:idadesub@users.sourceforge.net>`_
|
|
||||||
|
|
||||||
Tutorial Introduction
|
Tutorial Introduction
|
||||||
=====================
|
=====================
|
||||||
|
|
||||||
|
@ -5,9 +5,6 @@ Kaleidoscope: Implementing a Parser and AST
|
|||||||
.. contents::
|
.. contents::
|
||||||
:local:
|
:local:
|
||||||
|
|
||||||
Written by `Chris Lattner <mailto:sabre@nondot.org>`_ and `Erick
|
|
||||||
Tryzelaar <mailto:idadesub@users.sourceforge.net>`_
|
|
||||||
|
|
||||||
Chapter 2 Introduction
|
Chapter 2 Introduction
|
||||||
======================
|
======================
|
||||||
|
|
||||||
|
@ -5,9 +5,6 @@ Kaleidoscope: Code generation to LLVM IR
|
|||||||
.. contents::
|
.. contents::
|
||||||
:local:
|
:local:
|
||||||
|
|
||||||
Written by `Chris Lattner <mailto:sabre@nondot.org>`_ and `Erick
|
|
||||||
Tryzelaar <mailto:idadesub@users.sourceforge.net>`_
|
|
||||||
|
|
||||||
Chapter 3 Introduction
|
Chapter 3 Introduction
|
||||||
======================
|
======================
|
||||||
|
|
||||||
|
@ -5,9 +5,6 @@ Kaleidoscope: Adding JIT and Optimizer Support
|
|||||||
.. contents::
|
.. contents::
|
||||||
:local:
|
:local:
|
||||||
|
|
||||||
Written by `Chris Lattner <mailto:sabre@nondot.org>`_ and `Erick
|
|
||||||
Tryzelaar <mailto:idadesub@users.sourceforge.net>`_
|
|
||||||
|
|
||||||
Chapter 4 Introduction
|
Chapter 4 Introduction
|
||||||
======================
|
======================
|
||||||
|
|
||||||
|
@ -5,9 +5,6 @@ Kaleidoscope: Extending the Language: Control Flow
|
|||||||
.. contents::
|
.. contents::
|
||||||
:local:
|
:local:
|
||||||
|
|
||||||
Written by `Chris Lattner <mailto:sabre@nondot.org>`_ and `Erick
|
|
||||||
Tryzelaar <mailto:idadesub@users.sourceforge.net>`_
|
|
||||||
|
|
||||||
Chapter 5 Introduction
|
Chapter 5 Introduction
|
||||||
======================
|
======================
|
||||||
|
|
||||||
|
@ -5,9 +5,6 @@ Kaleidoscope: Extending the Language: User-defined Operators
|
|||||||
.. contents::
|
.. contents::
|
||||||
:local:
|
:local:
|
||||||
|
|
||||||
Written by `Chris Lattner <mailto:sabre@nondot.org>`_ and `Erick
|
|
||||||
Tryzelaar <mailto:idadesub@users.sourceforge.net>`_
|
|
||||||
|
|
||||||
Chapter 6 Introduction
|
Chapter 6 Introduction
|
||||||
======================
|
======================
|
||||||
|
|
||||||
|
@ -5,9 +5,6 @@ Kaleidoscope: Extending the Language: Mutable Variables
|
|||||||
.. contents::
|
.. contents::
|
||||||
:local:
|
:local:
|
||||||
|
|
||||||
Written by `Chris Lattner <mailto:sabre@nondot.org>`_ and `Erick
|
|
||||||
Tryzelaar <mailto:idadesub@users.sourceforge.net>`_
|
|
||||||
|
|
||||||
Chapter 7 Introduction
|
Chapter 7 Introduction
|
||||||
======================
|
======================
|
||||||
|
|
||||||
|
@ -5,8 +5,6 @@ Kaleidoscope: Conclusion and other useful LLVM tidbits
|
|||||||
.. contents::
|
.. contents::
|
||||||
:local:
|
:local:
|
||||||
|
|
||||||
Written by `Chris Lattner <mailto:sabre@nondot.org>`_
|
|
||||||
|
|
||||||
Tutorial Conclusion
|
Tutorial Conclusion
|
||||||
===================
|
===================
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user