annotate LICENSE @ 1607:207a8a438dea

Merge DMD r253: refactor: Argument => Parameter --- dmd/arrayop.c | 30 ++++---- dmd/arraytypes.h | 2 +- dmd/class.c | 8 +- dmd/declaration.c | 10 ++-- dmd/declaration.h | 16 ++-- dmd/doc.c | 12 ++-- dmd/dsymbol.c | 4 +- dmd/expression.c | 48 +++++++------- dmd/expression.h | 32 +++++----- dmd/func.c | 78 +++++++++++----------- dmd/init.c | 2 +- dmd/interpret.c | 8 +- dmd/mtype.c | 190 ++++++++++++++++++++++++++-------------------------- dmd/mtype.h | 32 +++++----- dmd/opover.c | 34 +++++----- dmd/parse.c | 40 ++++++------ dmd/parse.h | 2 +- dmd/statement.c | 90 +++++++++++++------------- dmd/statement.h | 14 ++-- dmd/struct.c | 8 +- dmd/template.c | 30 ++++---- gen/functions.cpp | 10 ++-- gen/functions.h | 2 +- gen/tocall.cpp | 10 ++-- gen/typinf.cpp | 6 +- 25 files changed, 359 insertions(+), 359 deletions(-)
author Leandro Lucarella <llucax@gmail.com>
date Wed, 06 Jan 2010 15:18:20 -0300
parents 6cffbfff0363
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
664
eef8ac26c66c Some missed LLVMDC -> LDC.
Christian Kamm <kamm incasoftware de>
parents: 434
diff changeset
1 LDC is released under the "three-clause BSD" license reproduced below with
434
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
2 the following exceptions:
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
3
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
4 The DMD frontend in dmd/* is originally written by Walter Bright and released
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
5 under the artistic license (dmd/artistic.txt) or the GPL version 1 (dmd/gpl.txt).
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
6
878
6cffbfff0363 Update to license to adjust inline asm file names and years.
Christian Kamm <kamm incasoftware de>
parents: 693
diff changeset
7 The files gen/asmstmt.cpp and gen/asm-*.h were originally written by David
434
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
8 Friedman for GDC and released under the artistic license (dmd/artistic.txt) or
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
9 the GPL version 2 or later.
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
10
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
11
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
12 -- "three-clause BSD" --
878
6cffbfff0363 Update to license to adjust inline asm file names and years.
Christian Kamm <kamm incasoftware de>
parents: 693
diff changeset
13 Copyright (c) 2007-2009 LDC Team.
434
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
14 All rights reserved.
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
15
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
16 Redistribution and use in source and binary forms, with or without modification,
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
17 are permitted provided that the following conditions are met:
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
18
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
19 * Redistributions of source code must retain the above copyright notice, this
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
20 list of conditions and the following disclaimer.
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
21 * Redistributions in binary form must reproduce the above copyright notice, this
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
22 list of conditions and the following disclaimer in the documentation and/or
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
23 other materials provided with the distribution.
664
eef8ac26c66c Some missed LLVMDC -> LDC.
Christian Kamm <kamm incasoftware de>
parents: 434
diff changeset
24 * Neither the name of the LDC Team nor the names of its contributors may be
434
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
25 used to endorse or promote products derived from this software without specific
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
26 prior written permission.
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
27
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
28 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
29 EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
30 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
31 SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
32 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
33 TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
34 BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
35 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
36 ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
6df6433fdb25 Add license text.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
37 DAMAGE.
693
3112d269dd95 Trivial change to test auth.
Christian Kamm <kamm incasoftware de>
parents: 664
diff changeset
38