瀏覽代碼

teensy3: usb_dev: Mark _reboot_Teensyduino_() unreachable

When including "core_pins.h":

    teensy3/usb_dev.c: In function '_reboot_Teensyduino_':
    teensy3/usb_dev.c:899:1: warning: 'noreturn' function does return

Fix this by adding a call to __builtin_unreachable().

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
main
Geert Uytterhoeven 4 年之前
父節點
當前提交
8dc428ee86
共有 1 個檔案被更改,包括 1 行新增0 行删除
  1. +1
    -0
      teensy3/usb_dev.c

+ 1
- 0
teensy3/usb_dev.c 查看文件

@@ -877,6 +877,7 @@ void _reboot_Teensyduino_(void)
{
// TODO: initialize R0 with a code....
__asm__ volatile("bkpt");
__builtin_unreachable();
}



Loading…
取消
儲存