diff options
author | liushuyu <liushuyu011@gmail.com> | 2022-04-22 05:25:25 -0600 |
---|---|---|
committer | liushuyu <liushuyu011@gmail.com> | 2022-04-22 16:29:26 -0600 |
commit | 49c0eeb670ecd6100074dd71600a37d93a85c429 (patch) | |
tree | b85f895970f00d1d9a90ab207b0a8e2339991156 /gcc | |
parent | 1286acc34e826039ebc8f09ad36dddc30f726283 (diff) | |
download | gcc-49c0eeb670ecd6100074dd71600a37d93a85c429.zip gcc-49c0eeb670ecd6100074dd71600a37d93a85c429.tar.gz gcc-49c0eeb670ecd6100074dd71600a37d93a85c429.tar.bz2 |
tests/attr_cold: fix a typo
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/rust/compile/attr_cold.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/rust/compile/attr_cold.rs b/gcc/testsuite/rust/compile/attr_cold.rs index 883d2f8..f705ea9 100644 --- a/gcc/testsuite/rust/compile/attr_cold.rs +++ b/gcc/testsuite/rust/compile/attr_cold.rs @@ -1,11 +1,11 @@ -// { dg-additional-options "-fdump-tree-gimple } +// { dg-additional-options "-fdump-tree-gimple" } #[cold] fn cold_function() -> i32 { 42 } fn main() -> i32 { - // { dg-final { scan-tree-dump-times {__attribute__((cdecl, cold))} 1 gimple } } + // { dg-final { scan-tree-dump-times {__attribute__\(\(cdecl, cold\)\)} 1 gimple } } cold_function(); 0 |