Skip to content

Commit c212841

Browse files
committed
[mips] Update release notes to account for revert.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_36@237433 91177308-0d34-0410-b5e6-96231b3b80d8
0 parents  commit c212841

File tree

4 files changed

+139
-0
lines changed

4 files changed

+139
-0
lines changed

.clang-format

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
BasedOnStyle: LLVM
2+

.clang-tidy

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Checks: '-*,clang-diagnostic-*,llvm-*,misc-*'

.gitignore

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
#==============================================================================#
2+
# This file specifies intentionally untracked files that git should ignore.
3+
# See: http://www.kernel.org/pub/software/scm/git/docs/gitignore.html
4+
#
5+
# This file is intentionally different from the output of `git svn show-ignore`,
6+
# as most of those are useless.
7+
#==============================================================================#
8+
9+
#==============================================================================#
10+
# File extensions to be ignored anywhere in the tree.
11+
#==============================================================================#
12+
# Temp files created by most text editors.
13+
*~
14+
# Merge files created by git.
15+
*.orig
16+
# Byte compiled python modules.
17+
*.pyc
18+
# vim swap files
19+
.*.swp
20+
.sw?
21+
#OS X specific files.
22+
.DS_store
23+
24+
#==============================================================================#
25+
# Explicit files to ignore (only matches one).
26+
#==============================================================================#
27+
# Various tag programs
28+
/tags
29+
/TAGS
30+
/GPATH
31+
/GRTAGS
32+
/GSYMS
33+
/GTAGS
34+
.gitusers
35+
autom4te.cache
36+
cscope.files
37+
cscope.out
38+
autoconf/aclocal.m4
39+
autoconf/autom4te.cache
40+
compile_commands.json
41+
42+
#==============================================================================#
43+
# Directories to ignore (do not add trailing '/'s, they skip symlinks).
44+
#==============================================================================#
45+
# External projects that are tracked independently.
46+
projects/*
47+
!projects/CMakeLists.txt
48+
!projects/Makefile
49+
# Clang, which is tracked independently.
50+
tools/clang
51+
# LLDB, which is tracked independently.
52+
tools/lldb
53+
# lld, which is tracked independently.
54+
tools/lld
55+
# llgo, which is tracked independently.
56+
tools/llgo
57+
# Polly, which is tracked independently.
58+
tools/polly
59+
# Sphinx build tree, if building in-source dir.
60+
docs/_build
61+
62+
#==============================================================================#
63+
# Files created in tree by the Go bindings.
64+
#==============================================================================#
65+
bindings/go/llvm/llvm_config.go
66+
bindings/go/llvm/workdir

LICENSE.TXT

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
==============================================================================
2+
LLVM Release License
3+
==============================================================================
4+
University of Illinois/NCSA
5+
Open Source License
6+
7+
Copyright (c) 2003-2014 University of Illinois at Urbana-Champaign.
8+
All rights reserved.
9+
10+
Developed by:
11+
12+
LLVM Team
13+
14+
University of Illinois at Urbana-Champaign
15+
16+
http://llvm.org
17+
18+
Permission is hereby granted, free of charge, to any person obtaining a copy of
19+
this software and associated documentation files (the "Software"), to deal with
20+
the Software without restriction, including without limitation the rights to
21+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
22+
of the Software, and to permit persons to whom the Software is furnished to do
23+
so, subject to the following conditions:
24+
25+
* Redistributions of source code must retain the above copyright notice,
26+
this list of conditions and the following disclaimers.
27+
28+
* Redistributions in binary form must reproduce the above copyright notice,
29+
this list of conditions and the following disclaimers in the
30+
documentation and/or other materials provided with the distribution.
31+
32+
* Neither the names of the LLVM Team, University of Illinois at
33+
Urbana-Champaign, nor the names of its contributors may be used to
34+
endorse or promote products derived from this Software without specific
35+
prior written permission.
36+
37+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
38+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
39+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
40+
CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
41+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
42+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE
43+
SOFTWARE.
44+
45+
==============================================================================
46+
Copyrights and Licenses for Third Party Software Distributed with LLVM:
47+
==============================================================================
48+
The LLVM software contains code written by third parties. Such software will
49+
have its own individual LICENSE.TXT file in the directory in which it appears.
50+
This file will describe the copyrights, license, and restrictions which apply
51+
to that code.
52+
53+
The disclaimer of warranty in the University of Illinois Open Source License
54+
applies to all code in the LLVM Distribution, and nothing in any of the
55+
other licenses gives permission to use the names of the LLVM Team or the
56+
University of Illinois to endorse or promote products derived from this
57+
Software.
58+
59+
The following pieces of software have additional or alternate copyrights,
60+
licenses, and/or restrictions:
61+
62+
Program Directory
63+
------- ---------
64+
Autoconf llvm/autoconf
65+
llvm/projects/ModuleMaker/autoconf
66+
Google Test llvm/utils/unittest/googletest
67+
OpenBSD regex llvm/lib/Support/{reg*, COPYRIGHT.regex}
68+
pyyaml tests llvm/test/YAMLParser/{*.data, LICENSE.TXT}
69+
ARM contributions llvm/lib/Target/ARM/LICENSE.TXT
70+
md5 contributions llvm/lib/Support/MD5.cpp llvm/include/llvm/Support/MD5.h

0 commit comments

Comments
 (0)