Skip to content

Commit 043dc5c

Browse files
committed
Merge branch 'swift/main' of github.com:apple/llvm-project into maxd/main-merge
# Conflicts: # llvm/lib/MC/WasmObjectWriter.cpp
2 parents ad4415d + 8443fe8 commit 043dc5c

File tree

27,855 files changed

+3389283
-1195504
lines changed

Some content is hidden

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

27,855 files changed

+3389283
-1195504
lines changed

.arcconfig

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
"phabricator.uri" : "https://reviews.llvm.org/",
33
"repository.callsign" : "G",
44
"conduit_uri" : "https://reviews.llvm.org/",
5-
"base": "git:HEAD^"
5+
"base": "git:HEAD^",
6+
"arc.land.onto.default": "main"
67
}

.arclint

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
"script-and-regex.regex": "/^(?P<severity>[[:alpha:]]+)\n(?P<message>[^\n]+)\n(====|(?P<line>\\d),(?P<char>\\d)\n(?P<original>.*)>>>>\n(?P<replacement>.*)<<<<\n)$/s",
77
"include": [
88
"(\\.(cc|cpp|h)$)"
9+
],
10+
"exclude": [
11+
"(^clang/test/)"
912
]
1013
}
1114
}

.git-blame-ignore-revs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,21 @@ b9c1b51e45b845debb76d8658edabca70ca56079
2222

2323
# r302496: That is the revert of r302421
2424
ff63090b0e1072bd398b8efef8ae2291613a6ec9
25+
26+
# Fix more line endings changed in r320089. NFC.
27+
d8f0e6caa91e230a486c948ab643174e40bdf215
28+
29+
# Correct line endings that got mixed up in r320089; NFC.
30+
29dc5ded45447915d96ef7ca3f02acf2232282e0
31+
32+
# Remove line-endings added by r320089. NFC.
33+
100a0eedc00b2bf48bcdc6c209c000745a4a0e48
34+
35+
# Cleanup __config indention. NFC.
36+
2b772b930e097ed6f06d698a51e291c7fd318baa
37+
38+
# Fixing whitespace problems
39+
94b2dd0998230c758abd92c99d3700c971f7a31a
40+
41+
# Wiped out some non-ascii characters that snuck into the copyright.
42+
5b08a8a43254ed30bd953e869b0fd9fc1e8b82d0

.github/workflows/clang-tests.yml

Lines changed: 0 additions & 43 deletions
This file was deleted.

.github/workflows/libclc-tests.yml

Lines changed: 0 additions & 53 deletions
This file was deleted.

.github/workflows/lld-tests.yml

Lines changed: 0 additions & 43 deletions
This file was deleted.

.github/workflows/lldb-tests.yml

Lines changed: 0 additions & 48 deletions
This file was deleted.

.github/workflows/llvm-tests.yml

Lines changed: 0 additions & 116 deletions
This file was deleted.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: main branch sync
2+
3+
on:
4+
push:
5+
branches:
6+
- 'main'
7+
8+
jobs:
9+
branch_sync:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout Code
13+
uses: actions/checkout@v2
14+
with:
15+
# persist-credentials: false allows us to use our own credentials for
16+
# pushing to the repository. Otherwise, the default github actions token
17+
# is used.
18+
persist-credentials: false
19+
fetch-depth: 0
20+
21+
- name: Update branch
22+
env:
23+
LLVMBOT_TOKEN: ${{ secrets.LLVMBOT_MAIN_SYNC }}
24+
run: |
25+
git push https://[email protected]/${{ github.repository }} HEAD:master

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ autoconf/autom4te.cache
5353
# VS2017 and VSCode config files.
5454
.vscode
5555
.vs
56+
# pythonenv for github Codespaces
57+
pythonenv*
5658
# clangd index. (".clangd" is a config file now, thus trailing slash)
5759
.clangd/
5860
.cache

0 commit comments

Comments
 (0)