Skip to content

Commit ff7d609

Browse files
authored
---
yaml --- r: 284543 b: refs/heads/revert-24009-jekbradbury-trace-sum c: 71cd119 h: refs/heads/master i: 284541: 58f2ade 284539: 0c33bba 284535: f78fa6d 284527: 328c1f0 284511: fdebe65 284479: 8db3f28 284415: 764befe
1 parent e7e22f8 commit ff7d609

File tree

16,243 files changed

+2462257
-0
lines changed

Some content is hidden

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

16,243 files changed

+2462257
-0
lines changed

[refs]

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1311,3 +1311,4 @@ refs/heads/compnerd-windows-is-fetch: d80736e9a0b724569829ccb5b32a8be9fb968e4f
13111311
refs/heads/natecook1000-patch-2: 1632fbdf63c06b3e90015cb20c1d629e35aed65d
13121312
refs/heads/preset-for-llvm-tsan-libdispatch-tests: 4db8a31af4bb14d1c04f209ff31dc0ad1edca393
13131313
refs/heads/revert-23762-tf-76: 730b2a45b59bd2b0661052b464083c7d82a6225b
1314+
refs/heads/revert-24009-jekbradbury-trace-sum: 71cd119e77e565961224d0a92fe853c2945c7c81
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
BasedOnStyle: LLVM
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
;;; Directory Local Variables
2+
;;; For more information see (info "(emacs) Directory Variables")
3+
4+
((nil
5+
(eval let*
6+
((x (dir-locals-find-file default-directory))
7+
(this-directory (if (listp x) (car x) (file-name-directory x))))
8+
(unless (or (featurep 'swift-project-settings)
9+
(and (fboundp 'tramp-tramp-file-p)
10+
(tramp-tramp-file-p this-directory)))
11+
(add-to-list 'load-path
12+
(concat this-directory "utils")
13+
:append)
14+
(let ((swift-project-directory this-directory))
15+
(require 'swift-project-settings)))
16+
(set (make-local-variable 'swift-project-directory)
17+
this-directory)
18+
)
19+
(tab-width . 2)
20+
(fill-column . 80)
21+
(c-file-style . "swift"))
22+
(c++-mode
23+
(whitespace-style face lines indentation:space)
24+
(flycheck-clang-language-standard . "c++14"))
25+
(c-mode
26+
(whitespace-style face lines indentation:space))
27+
(objc-mode
28+
(whitespace-style face lines indentation:space))
29+
(prog-mode
30+
(eval add-hook 'prog-mode-hook
31+
(lambda nil
32+
(whitespace-mode 1))
33+
(not :APPEND)
34+
:BUFFER-LOCAL))
35+
(swift-mode
36+
(swift-find-executable-fn . swift-project-executable-find)
37+
(swift-syntax-check-fn . swift-project-swift-syntax-check)
38+
(whitespace-style face lines indentation:space)
39+
(swift-basic-offset . 2)
40+
(tab-always-indent . t)))
41+
42+
43+
44+
;; Local Variables:
45+
;; eval: (whitespace-mode -1)
46+
;; End:
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[flake8]
2+
ignore = W291 W504
3+
filename = *.py,
4+
./utils/80+-check,
5+
./utils/backtrace-check,
6+
./benchmark/scripts/Benchmark_Driver,
7+
./benchmark/scripts/Benchmark_DTrace.in,
8+
./benchmark/scripts/Benchmark_GuardMalloc.in,
9+
./benchmark/scripts/Benchmark_RuntimeLeaksRunner.in,
10+
./utils/build-script,
11+
./utils/check-incremental,
12+
./test/Driver/Inputs/fake-toolchain/clang++,
13+
./utils/coverage/coverage-build-db,
14+
./utils/coverage/coverage-generate-data,
15+
./utils/coverage/coverage-query-db,
16+
./utils/coverage/coverage-touch-tests,
17+
./utils/gyb,
18+
./test/Driver/Inputs/fake-toolchain/ld,
19+
./utils/line-directive,
20+
./utils/swift_build_support/tests/mock-distcc,
21+
./docs/scripts/ns-html2rst,
22+
./utils/PathSanitizingFileCheck,
23+
./utils/recursive-lipo,
24+
./utils/round-trip-syntax-test,
25+
./utils/rth,
26+
./utils/run-remote,
27+
./utils/run-test,
28+
./utils/scale-test,
29+
./utils/submit-benchmark-results,
30+
./utils/update-checkout,
31+
./utils/viewcfg,
32+
./utils/symbolicate-linux-fatal,
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!-- What's in this pull request? -->
2+
Replace this paragraph with a description of your changes and rationale. Provide links to external references/discussions if appropriate.
3+
4+
<!-- If this pull request resolves any bugs in the Swift bug tracker, provide a link: -->
5+
Resolves [SR-NNNN](https://bugs.swift.org/browse/SR-NNNN).
6+
7+
<!--
8+
Before merging this pull request, you must run the Swift continuous integration tests.
9+
For information about triggering CI builds via @swift-ci, see:
10+
https://github.com/apple/swift/blob/master/docs/ContinuousIntegration.md#swift-ci
11+
12+
Thank you for your contribution to Swift!
13+
-->
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
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+
.*.sw[a-z]
20+
.sw?
21+
22+
#==============================================================================#
23+
# Explicit files to ignore (only matches one).
24+
#==============================================================================#
25+
cscope.files
26+
cscope.out
27+
28+
#==============================================================================#
29+
# Directories to ignore (do not add trailing '/'s, they skip symlinks).
30+
#==============================================================================#
31+
# Generated docs
32+
docs/_build
33+
34+
# Finder metadata
35+
.DS_Store
36+
37+
#==============================================================================#
38+
# Ignore CMake temporary files
39+
#==============================================================================#
40+
CMakeCache.txt
41+
CMakeFiles
42+
.atom-build.json
43+
44+
#==============================================================================#
45+
# Ignore compile database
46+
#==============================================================================#
47+
compile_commands.json
48+
49+
# Ignore generated GYB files until we fix the workaround on Windows
50+
#==============================================================================#
51+
8
52+
4
53+
SortedCFDatabase.def
54+
htmlcov
55+
.coverage
56+
/benchmark/scripts/Benchmark_Driverc
Lines changed: 146 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,146 @@
1+
Adrian-Constantin Popescu <[email protected]> <[email protected]>
2+
3+
4+
5+
Alexis Beingessner <[email protected]> <[email protected]>
6+
7+
8+
9+
Argyrios Kyrtzidis <[email protected]> <[email protected]>
10+
11+
Ben Cohen <[email protected]>
12+
13+
14+
15+
Brent Royal-Gordon <[email protected]> <[email protected]>
16+
17+
18+
19+
20+
Chris Bieneman <[email protected]>
21+
22+
23+
24+
25+
26+
codester <[email protected]> codestergit <[email protected]>
27+
28+
29+
Dante Broggi <[email protected]>
30+
31+
32+
33+
34+
35+
36+
37+
David Rönnqvist <[email protected]>
38+
39+
40+
41+
42+
43+
44+
45+
46+
47+
48+
Erik Eckstein <[email protected]>
49+
50+
51+
Ewa Matejska <[email protected]>
52+
53+
54+
55+
56+
57+
58+
59+
Greg Titus <[email protected]>
60+
61+
62+
63+
64+
65+
Hitster GTD <[email protected]>
66+
67+
Ingmar Stein <[email protected]>
68+
69+
Jacob Bandes-Storch <[email protected]> <[email protected]>
70+
71+
Janosch Hildebrand <[email protected]> <[email protected]>
72+
Janosch Hildebrand <[email protected]> <[email protected]>
73+
74+
75+
76+
77+
joe DeCapo <[email protected]>
78+
79+
80+
81+
82+
83+
84+
85+
86+
Kevin Saldaña <[email protected]>
87+
Kim Topley <[email protected]>
88+
89+
90+
Kuba Mracek <[email protected]>
91+
Luiz Fernando Silva <[email protected]>
92+
93+
94+
95+
96+
97+
Max Moiseev <[email protected]>
98+
99+
100+
101+
102+
103+
104+
105+
106+
107+
Mishal Awadah <[email protected]>
108+
Mishal Shah <[email protected]>
109+
110+
111+
112+
113+
114+
115+
116+
Nicole Jacque <[email protected]>
117+
118+
119+
120+
Paweł Szot <[email protected]>
121+
122+
Pete Cooper <[email protected]>
123+
124+
125+
126+
127+
128+
129+
Ross Bayer <[email protected]>
130+
131+
132+
133+
134+
135+
Stephen Canon <[email protected]>
136+
137+
Sukolsak Sakshuwong <[email protected]>
138+
139+
140+
141+
142+
143+
144+
145+
146+

0 commit comments

Comments
 (0)