Skip to content

Commit ee597c0

Browse files
committed
fix conflict
2 parents c4c4a3d + 702987f commit ee597c0

File tree

4,253 files changed

+54727
-38835
lines changed

Some content is hidden

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

4,253 files changed

+54727
-38835
lines changed

Diff for: .gitmodules

+4
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,7 @@
5151
path = src/tools/enzyme
5252
url = https://github.com/EnzymeAD/Enzyme.git
5353
shallow = true
54+
[submodule "src/gcc"]
55+
path = src/gcc
56+
url = https://github.com/rust-lang/gcc.git
57+
shallow = true

Diff for: Cargo.lock

+15-46
Original file line numberDiff line numberDiff line change
@@ -104,15 +104,6 @@ dependencies = [
104104
"unicode-width",
105105
]
106106

107-
[[package]]
108-
name = "ansi_term"
109-
version = "0.12.1"
110-
source = "registry+https://github.com/rust-lang/crates.io-index"
111-
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
112-
dependencies = [
113-
"winapi",
114-
]
115-
116107
[[package]]
117108
name = "anstream"
118109
version = "0.6.15"
@@ -714,7 +705,7 @@ dependencies = [
714705
"miow",
715706
"miropt-test-tools",
716707
"regex",
717-
"rustfix 0.8.1",
708+
"rustfix",
718709
"serde",
719710
"serde_json",
720711
"tracing",
@@ -2278,7 +2269,7 @@ dependencies = [
22782269
"rustc_version",
22792270
"smallvec",
22802271
"tempfile",
2281-
"ui_test 0.21.2",
2272+
"ui_test 0.26.5",
22822273
"windows-sys 0.52.0",
22832274
]
22842275

@@ -2807,16 +2798,6 @@ version = "0.1.1"
28072798
source = "registry+https://github.com/rust-lang/crates.io-index"
28082799
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
28092800

2810-
[[package]]
2811-
name = "prettydiff"
2812-
version = "0.6.4"
2813-
source = "registry+https://github.com/rust-lang/crates.io-index"
2814-
checksum = "8ff1fec61082821f8236cf6c0c14e8172b62ce8a72a0eedc30d3b247bb68dc11"
2815-
dependencies = [
2816-
"ansi_term",
2817-
"pad",
2818-
]
2819-
28202801
[[package]]
28212802
name = "prettydiff"
28222803
version = "0.7.0"
@@ -4167,6 +4148,7 @@ dependencies = [
41674148
"rustc_errors",
41684149
"rustc_feature",
41694150
"rustc_fluent_macro",
4151+
"rustc_index",
41704152
"rustc_lexer",
41714153
"rustc_macros",
41724154
"rustc_session",
@@ -4624,18 +4606,6 @@ dependencies = [
46244606
"rustdoc",
46254607
]
46264608

4627-
[[package]]
4628-
name = "rustfix"
4629-
version = "0.6.1"
4630-
source = "registry+https://github.com/rust-lang/crates.io-index"
4631-
checksum = "ecd2853d9e26988467753bd9912c3a126f642d05d229a4b53f5752ee36c56481"
4632-
dependencies = [
4633-
"anyhow",
4634-
"log",
4635-
"serde",
4636-
"serde_json",
4637-
]
4638-
46394609
[[package]]
46404610
name = "rustfix"
46414611
version = "0.8.1"
@@ -4660,7 +4630,7 @@ dependencies = [
46604630

46614631
[[package]]
46624632
name = "rustfmt-nightly"
4663-
version = "1.7.1"
4633+
version = "1.8.0"
46644634
dependencies = [
46654635
"annotate-snippets 0.9.2",
46664636
"anyhow",
@@ -5517,36 +5487,36 @@ checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9"
55175487

55185488
[[package]]
55195489
name = "ui_test"
5520-
version = "0.21.2"
5490+
version = "0.25.0"
55215491
source = "registry+https://github.com/rust-lang/crates.io-index"
5522-
checksum = "aaf4bf7c184b8dfc7a4d3b90df789b1eb992ee42811cd115f32a7a1eb781058d"
5492+
checksum = "f7e4f339f62edc873975c47115f9e71c5454ddaa37c1142b42fc0b2672c8dacb"
55235493
dependencies = [
5524-
"annotate-snippets 0.9.2",
5494+
"annotate-snippets 0.11.4",
55255495
"anyhow",
55265496
"bstr",
55275497
"cargo-platform",
5528-
"cargo_metadata 0.15.4",
5498+
"cargo_metadata 0.18.1",
55295499
"color-eyre",
55305500
"colored",
55315501
"comma",
55325502
"crossbeam-channel",
55335503
"indicatif",
55345504
"lazy_static",
55355505
"levenshtein",
5536-
"prettydiff 0.6.4",
5506+
"prettydiff",
55375507
"regex",
55385508
"rustc_version",
5539-
"rustfix 0.6.1",
5509+
"rustfix",
55405510
"serde",
55415511
"serde_json",
5542-
"tempfile",
5512+
"spanned",
55435513
]
55445514

55455515
[[package]]
55465516
name = "ui_test"
5547-
version = "0.25.0"
5517+
version = "0.26.5"
55485518
source = "registry+https://github.com/rust-lang/crates.io-index"
5549-
checksum = "f7e4f339f62edc873975c47115f9e71c5454ddaa37c1142b42fc0b2672c8dacb"
5519+
checksum = "32ee4c40e5a5f9fa6864ff976473e5d6a6e9884b6ce68b40690d9f87e1994c83"
55505520
dependencies = [
55515521
"annotate-snippets 0.11.4",
55525522
"anyhow",
@@ -5558,12 +5528,11 @@ dependencies = [
55585528
"comma",
55595529
"crossbeam-channel",
55605530
"indicatif",
5561-
"lazy_static",
55625531
"levenshtein",
5563-
"prettydiff 0.7.0",
5532+
"prettydiff",
55645533
"regex",
55655534
"rustc_version",
5566-
"rustfix 0.8.1",
5535+
"rustfix",
55675536
"serde",
55685537
"serde_json",
55695538
"spanned",

Diff for: LICENSES/GCC-exception-3.1.txt

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
GCC RUNTIME LIBRARY EXCEPTION
2+
3+
Version 3.1, 31 March 2009
4+
5+
Copyright © 2009 Free Software Foundation, Inc. <https://fsf.org/>
6+
7+
Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
8+
9+
This GCC Runtime Library Exception ("Exception") is an additional permission under section 7 of the GNU General Public License, version 3 ("GPLv3"). It applies to a given file (the "Runtime Library") that bears a notice placed by the copyright holder of the file stating that the file is governed by GPLv3 along with this Exception.
10+
11+
When you use GCC to compile a program, GCC may combine portions of certain GCC header files and runtime libraries with the compiled program. The purpose of this Exception is to allow compilation of non-GPL (including proprietary) programs to use, in this way, the header files and runtime libraries covered by this Exception.
12+
0. Definitions.
13+
14+
A file is an "Independent Module" if it either requires the Runtime Library for execution after a Compilation Process, or makes use of an interface provided by the Runtime Library, but is not otherwise based on the Runtime Library.
15+
16+
"GCC" means a version of the GNU Compiler Collection, with or without modifications, governed by version 3 (or a specified later version) of the GNU General Public License (GPL) with the option of using any subsequent versions published by the FSF.
17+
18+
"GPL-compatible Software" is software whose conditions of propagation, modification and use would permit combination with GCC in accord with the license of GCC.
19+
20+
"Target Code" refers to output from any compiler for a real or virtual target processor architecture, in executable form or suitable for input to an assembler, loader, linker and/or execution phase. Notwithstanding that, Target Code does not include data in any format that is used as a compiler intermediate representation, or used for producing a compiler intermediate representation.
21+
22+
The "Compilation Process" transforms code entirely represented in non-intermediate languages designed for human-written code, and/or in Java Virtual Machine byte code, into Target Code. Thus, for example, use of source code generators and preprocessors need not be considered part of the Compilation Process, since the Compilation Process can be understood as starting with the output of the generators or preprocessors.
23+
24+
A Compilation Process is "Eligible" if it is done using GCC, alone or with other GPL-compatible software, or if it is done without using any work based on GCC. For example, using non-GPL-compatible Software to optimize any GCC intermediate representations would not qualify as an Eligible Compilation Process.
25+
1. Grant of Additional Permission.
26+
27+
You have permission to propagate a work of Target Code formed by combining the Runtime Library with Independent Modules, even if such propagation would otherwise violate the terms of GPLv3, provided that all Target Code was generated by Eligible Compilation Processes. You may then convey such a combination under terms of your choice, consistent with the licensing of the Independent Modules.
28+
2. No Weakening of GCC Copyleft.
29+
30+
The availability of this Exception does not imply any general presumption that third-party software is unaffected by the copyleft requirements of the license of GCC.

0 commit comments

Comments
 (0)