[U-Boot] [PATCH] ARC: Reset: Use __builtin_arc_brk() instead of open-coded ASM
Alexey Brodkin
Alexey.Brodkin at synopsys.com
Thu May 31 16:27:07 UTC 2018
For quite some time we have a GCC's built-in which inserts BRK
instruction so let's use it instead of simple insertion of in-line
assembly.
Signed-off-by: Alexey Brodkin <abrodkin at synopsys.com>
---
arch/arc/lib/reset.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arc/lib/reset.c b/arch/arc/lib/reset.c
index 40fb0f1fbd10..fe38c51bff93 100644
--- a/arch/arc/lib/reset.c
+++ b/arch/arc/lib/reset.c
@@ -12,7 +12,7 @@ int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
#ifdef DEBUG
/* Stop debug session here */
- __asm__("brk");
+ __builtin_arc_brk();
#endif
return 0;
}
--
2.17.0
More information about the U-Boot
mailing list