about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--compiler/rustc_error_codes/src/error_codes/E0798.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_error_codes/src/error_codes/E0798.md b/compiler/rustc_error_codes/src/error_codes/E0798.md
index 012c13b96ed..89e6f4d5718 100644
--- a/compiler/rustc_error_codes/src/error_codes/E0798.md
+++ b/compiler/rustc_error_codes/src/error_codes/E0798.md
@@ -11,7 +11,7 @@ see [arm's aapcs32](https://github.com/ARM-software/abi-aa/releases).
 
 Erroneous code example:
 
-```compile_fail,E0798
+```ignore (only fails on supported targets)
 #![feature(abi_c_cmse_nonsecure_call)]
 
 #[no_mangle]
@@ -26,7 +26,7 @@ Arguments' alignment is respected. In the example below, padding is inserted
 so that the `u64` argument is passed in registers r2 and r3. There is then no
 room left for the final `f32` argument
 
-```compile_fail,E0798
+```ignore (only fails on supported targets)
 #![feature(abi_c_cmse_nonsecure_call)]
 
 #[no_mangle]