This website requires JavaScript.
Explore
Help
Sign In
nordic-dev.net
/
rust
Watch
2
Star
0
Fork
0
You've already forked rust
mirror of
https://github.com/rust-lang/rust.git
synced
2025-06-06 12:18:33 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
4e9901faa9
rust
/
tests
/
run-make
/
pointer-auth-link-with-c
/
test.rs
11 lines
108 B
Rust
Raw
Normal View
History
Unescape
Escape
Add codegen option for branch protection and pointer authentication on AArch64 The branch-protection codegen option enables the use of hint-space pointer authentication code for AArch64 targets
2021-07-13 11:14:26 +00:00
#[
link(name =
"
test
"
)
]
extern
"
C
"
{
fn
foo
(
)
->
i32
;
}
fn
main
(
)
{
Run rustfmt on `tests/run-make/`. With the exception of `tests/run-make/translation/test.rs`, which has a syntax error. The expected output in `rustdoc-error-lines/rmake.rs`'s required slight tweaking. The two `reproducible-build.rs` files need `// ignore-tidy-linelength` because rustfmt produces lines longer than 100 chars, which tidy doesn't like, yuk.
2024-05-29 05:01:33 +00:00
unsafe
{
foo
(
)
;
}
Add codegen option for branch protection and pointer authentication on AArch64 The branch-protection codegen option enables the use of hint-space pointer authentication code for AArch64 targets
2021-07-13 11:14:26 +00:00
}
Reference in New Issue
Copy Permalink