From 7e2442c884f7b13e01a35fc7517f27319a9dbbb1 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Mon, 3 Sep 2018 19:25:12 +0200 Subject: [PATCH] remove TODO; add link to doc comment --- library/stdarch/coresimd/arm/armclang.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/library/stdarch/coresimd/arm/armclang.rs b/library/stdarch/coresimd/arm/armclang.rs index b58801037e4f..2caa7790b4db 100644 --- a/library/stdarch/coresimd/arm/armclang.rs +++ b/library/stdarch/coresimd/arm/armclang.rs @@ -13,10 +13,9 @@ /// - `0...65535` if you are compiling source as A32 code. /// - `0...255` if you are compiling source as T32 code. /// +/// [ARM's documentation](https://developer.arm.com/docs/100067/latest/compiler-specific-intrinsics/__breakpoint-intrinsic) +/// /// **NOTE** Due compiler limitations this function only supports the range `0...255` in A32 mode. -// TODO support the extended range `0...65535` when compiling as A32 code (`cfg(not(target_feature = -// "thumb-mode"))`). T32 mode (`cfg(target_feature = "thumb-mode")`) should continue to support the -// range `0...255`. #[cfg_attr(test, assert_instr(bkpt))] #[inline(always)] #[rustc_args_required_const(0)]