1
Fork 0
rust/tests/assembly/stack-protector
Matthias Krüger f71b6ebb49
Rollup merge of #136938 - mustartt:fix-stack-protector-filecheck, r=Mark-Simulacrum
Remove `:` from `stack-protector-heuristics-effect.rs` Filecheck Pattern

With function sections, the assembly label does not necessarily end in `:`.

Remove trailing `:` to be more consistent with the rest of the existing Filecheck patterns.
```
// CHECK-LABEL: local_string_addr_taken
#[no_mangle]
pub fn local_string_addr_taken(f: fn(&String)) {
    let x = String::new();
    f(&x);
```
2025-03-03 10:40:58 +01:00
..
stack-protector-heuristics-effect-windows-32bit.rs Run rustfmt on tests/assembly/. 2024-05-30 16:15:46 +10:00
stack-protector-heuristics-effect-windows-64bit.rs Run rustfmt on tests/assembly/. 2024-05-30 16:15:46 +10:00
stack-protector-heuristics-effect.rs fix label suffix 2025-02-20 13:31:12 -05:00
stack-protector-target-support.rs tests: use minicore more 2025-02-24 09:26:54 +00:00