Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
/dmdPublic

Commit2a01ac4

Browse files
committed
switch backend to Boost License
1 parentdb4fd76 commit2a01ac4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+903
-782
lines changed

‎src/ddmd/backend/aa.c‎

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
// Compiler implementation of the D programming language
2-
// Copyright (c) 2000-2009 by Digital Mars
3-
// All Rights Reserved
4-
// written by Walter Bright
5-
// http://www.digitalmars.com
6-
// Distributed under the Boost Software License, Version 1.0.
7-
// http://www.boost.org/LICENSE_1_0.txt
8-
// https://github.com/dlang/dmd/blob/master/src/backend/aa.c
1+
/**
2+
* Compiler implementation of the
3+
* $(LINK2 http://www.dlang.org, D programming language).
4+
*
5+
* Copyright: Copyright (c) 2000-2017 by Digital Mars, All Rights Reserved
6+
* Authors: $(LINK2 http://www.digitalmars.com, Walter Bright)
7+
* License: Distributed under the Boost Software License, Version 1.0.
8+
* http://www.boost.org/LICENSE_1_0.txt
9+
* Source: https://github.com/dlang/dmd/blob/master/src/ddmd/backend/aa.c
10+
*/
911

1012

1113
#include<stdio.h>

‎src/ddmd/backend/aa.h‎

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
// Compiler implementation of the D programming language
2-
// Copyright (c) 2006-2009 by Digital Mars
3-
// All Rights Reserved
4-
// written by Walter Bright
5-
// http://www.digitalmars.com
6-
// Distributed under the Boost Software License, Version 1.0.
7-
// http://www.boost.org/LICENSE_1_0.txt
8-
// https://github.com/dlang/dmd/blob/master/src/backend/aa.h
9-
1+
/**
2+
* Compiler implementation of the
3+
* $(LINK2 http://www.dlang.org, D programming language).
4+
*
5+
* Copyright: Copyright (c) 2000-2017 by Digital Mars, All Rights Reserved
6+
* Authors: $(LINK2 http://www.digitalmars.com, Walter Bright)
7+
* License: Distributed under the Boost Software License, Version 1.0.
8+
* http://www.boost.org/LICENSE_1_0.txt
9+
* Source: https://github.com/dlang/dmd/blob/master/src/ddmd/backend/aa.h
10+
*/
1011

1112

1213
#ifndef AA_H

‎src/ddmd/backend/backconfig.c‎

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
// Copyright (C) 2000-2013 by Digital Mars
2-
// All Rights Reserved
3-
// http://www.digitalmars.com
4-
// Written by Walter Bright
5-
/*
6-
* This source file is made available for personal use
7-
* only. The license is in backendlicense.txt
8-
* For any other uses, please contact Digital Mars.
1+
/**
2+
* Compiler implementation of the
3+
* $(LINK2 http://www.dlang.org, D programming language).
4+
*
5+
* Copyright: Copyright (c) 2000-2017 by Digital Mars, All Rights Reserved
6+
* Authors: $(LINK2 http://www.digitalmars.com, Walter Bright)
7+
* License: Distributed under the Boost Software License, Version 1.0.
8+
* http://www.boost.org/LICENSE_1_0.txt
9+
* Source: https://github.com/dlang/dmd/blob/master/src/ddmd/backend/backconfig.c
910
*/
1011

1112
// Configure the back end (optimizer and code generator)

‎src/ddmd/backend/blockopt.c‎

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
// Copyright (C) 1986-1997 by Symantec
2-
// Copyright (C) 2000-2013 by Digital Mars
3-
// All Rights Reserved
4-
// http://www.digitalmars.com
5-
// Written by Walter Bright
6-
/*
7-
* This source file is made available for personal use
8-
* only. The license is in backendlicense.txt
9-
* For any other uses, please contact Digital Mars.
1+
/**
2+
* Compiler implementation of the
3+
* $(LINK2 http://www.dlang.org, D programming language).
4+
*
5+
* Copyright: Copyright (C) 1986-1997 by Symantec
6+
* Copyright (c) 2000-2012 by Digital Mars, All Rights Reserved
7+
* Authors: $(LINK2 http://www.digitalmars.com, Walter Bright)
8+
* License: Distributed under the Boost Software License, Version 1.0.
9+
* http://www.boost.org/LICENSE_1_0.txt
10+
* Source: https://github.com/dlang/dmd/blob/master/src/ddmd/backend/blockopt.c
1011
*/
1112

1213

‎src/ddmd/backend/cc.d‎

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@
55
* Copyright: Copyright (C) 1985-1998 by Symantec
66
* Copyright (c) 2000-2012 by Digital Mars, All Rights Reserved
77
* Authors: $(LINK2 http://www.digitalmars.com, Walter Bright)
8-
* License: backendlicense.txt
9-
* Source: $(DMDSRC backend/_cc.d)
8+
* License: Distributed under the Boost Software License, Version 1.0.
9+
* http://www.boost.org/LICENSE_1_0.txt
10+
* Source: https://github.com/dlang/dmd/blob/master/src/ddmd/backend/_cc.d
1011
*/
1112

1213
moduleddmd.backend.cc;

‎src/ddmd/backend/cc.h‎

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
// Copyright (C) 1985-1998 by Symantec
2-
// Copyright (C) 2000-2012 by Digital Mars
3-
// All Rights Reserved
4-
// http://www.digitalmars.com
5-
// Written by Walter Bright
6-
/*
7-
* This source file is made available for personal use
8-
* only. The license is in backendlicense.txt
9-
* For any other uses, please contact Digital Mars.
1+
/**
2+
* Compiler implementation of the
3+
* $(LINK2 http://www.dlang.org, D programming language).
4+
*
5+
* Copyright: Copyright (C) 1985-1998 by Symantec
6+
* Copyright (c) 2000-2017 by Digital Mars, All Rights Reserved
7+
* Authors: $(LINK2 http://www.digitalmars.com, Walter Bright)
8+
* License: Distributed under the Boost Software License, Version 1.0.
9+
* http://www.boost.org/LICENSE_1_0.txt
10+
* Source: https://github.com/dlang/dmd/blob/master/src/ddmd/backend/cc.h
1011
*/
1112

1213
#if __DMC__

‎src/ddmd/backend/cdef.d‎

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@
55
* Copyright: Copyright (C) 1985-1998 by Symantec
66
* Copyright (c) 2000-2017 by Digital Mars, All Rights Reserved
77
* Authors: $(LINK2 http://www.digitalmars.com, Walter Bright)
8-
* License: backendlicense.txt
9-
* Source: $(DMDSRC backend/_cdef.d)
8+
* License: Distributed under the Boost Software License, Version 1.0.
9+
* http://www.boost.org/LICENSE_1_0.txt
10+
* Source: https://github.com/dlang/dmd/blob/master/src/ddmd/backend/_cdef.d
1011
*/
1112

1213
moduleddmd.backend.cdef;

‎src/ddmd/backend/cdef.h‎

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
// Copyright (C) 1985-1998 by Symantec
2-
// Copyright (C) 2000-2016 by Digital Mars
3-
// All Rights Reserved
4-
// http://www.digitalmars.com
5-
// Written by Walter Bright
6-
// https://github.com/dlang/dmd/blob/master/src/backend/cdef.h
7-
/*
8-
*This source file is made available for personal use
9-
*only. The license is in backendlicense.txt
10-
*For any other uses, please contact Digital Mars.
1+
/**
2+
* Compiler implementation of the
3+
* $(LINK2 http://www.dlang.org, D programming language).
4+
*
5+
* Copyright: Copyright (C) 1985-1998 by Symantec
6+
* Copyright (c) 2000-2017 by Digital Mars, All Rights Reserved
7+
* Authors: $(LINK2 http://www.digitalmars.com, Walter Bright)
8+
*License: Distributed under the Boost Software License, Version 1.0.
9+
* http://www.boost.org/LICENSE_1_0.txt
10+
*Source: https://github.com/dlang/dmd/blob/master/src/ddmd/backend/cdef.h
1111
*/
1212

1313

‎src/ddmd/backend/cg.c‎

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
// Copyright (C) 1984-1995 by Symantec
2-
// Copyright (C) 2000-2012 by Digital Mars
3-
// All Rights Reserved
4-
// http://www.digitalmars.com
5-
// Written by Walter Bright
6-
/*
7-
* This source file is made available for personal use
8-
* only. The license is in backendlicense.txt
9-
* For any other uses, please contact Digital Mars.
1+
/**
2+
* Compiler implementation of the
3+
* $(LINK2 http://www.dlang.org, D programming language).
4+
*
5+
* Copyright: Copyright (C) 1984-1995 by Symantec
6+
* Copyright (c) 2000-2017 by Digital Mars, All Rights Reserved
7+
* Authors: $(LINK2 http://www.digitalmars.com, Walter Bright)
8+
* License: Distributed under the Boost Software License, Version 1.0.
9+
* http://www.boost.org/LICENSE_1_0.txt
10+
* Source: https://github.com/dlang/dmd/blob/master/src/ddmd/backend/cg.c
1011
*/
1112

1213
#include<stdio.h>

‎src/ddmd/backend/cg87.c‎

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
// Copyright (C) 1987-1995 by Symantec
2-
// Copyright (C) 2000-2013 by Digital Mars
3-
// All Rights Reserved
4-
// http://www.digitalmars.com
5-
// Written by Walter Bright
6-
/*
7-
* This source file is made available for personal use
8-
* only. The license is in backendlicense.txt
9-
* For any other uses, please contact Digital Mars.
1+
/**
2+
* Compiler implementation of the
3+
* $(LINK2 http://www.dlang.org, D programming language).
4+
*
5+
* Copyright: Copyright (C) 1987-1995 by Symantec
6+
* Copyright (c) 2000-2017 by Digital Mars, All Rights Reserved
7+
* Authors: $(LINK2 http://www.digitalmars.com, Walter Bright)
8+
* License: Distributed under the Boost Software License, Version 1.0.
9+
* http://www.boost.org/LICENSE_1_0.txt
10+
* Source: https://github.com/dlang/dmd/blob/master/src/ddmd/backend/cg87.c
1011
*/
1112

1213
#if !SPP

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2026 Movatter.jp