Skip to content

Commit 40973ef

Browse files
Merge pull request #823 from GuillaumeGomez/simplify-intrinsics-generation
Simplify intrinsics generation
2 parents 02f889a + c848b28 commit 40973ef

File tree

6 files changed

+1455
-1558
lines changed

6 files changed

+1455
-1558
lines changed

.cspell.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
],
1919
"ignorePaths": [
2020
"src/intrinsic/archs.rs",
21+
"src/intrinsic/old_archs.rs",
2122
"src/intrinsic/llvm.rs"
2223
],
2324
"ignoreRegExpList": [

_typos.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ seh = "seh"
66
typ = "typ"
77

88
[files]
9-
extend-exclude = ["src/intrinsic/archs.rs"]
9+
extend-exclude = ["src/intrinsic/archs.rs", "src/intrinsic/old_archs.rs"]

src/intrinsic/archs.rs

Lines changed: 14 additions & 1410 deletions
Large diffs are not rendered by default.

src/intrinsic/llvm.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1604,5 +1604,7 @@ pub fn intrinsic<'gcc, 'tcx>(name: &str, cx: &CodegenCx<'gcc, 'tcx>) -> Function
16041604
func
16051605
}
16061606

1607+
#[cfg(feature = "master")]
1608+
include!("old_archs.rs");
16071609
#[cfg(feature = "master")]
16081610
include!("archs.rs");

0 commit comments

Comments
 (0)