]> begriffs open source - cmsis/blob - CMSIS/Core/Test/src/nop.c
Update workflows and build scripts
[cmsis] / CMSIS / Core / Test / src / nop.c
1 // RUN: %cc% %ccflags% %ccout% %T/%basename_t.o %s; llvm-objdump --mcpu=%mcpu% -d %T/%basename_t.o | FileCheck --allow-unused-prefixes --check-prefixes %prefixes% %s
2
3 #include "cmsis_compiler.h"
4
5 void nop() {
6     // CHECK-LABEL: <nop>:
7     // CHECK: {{(nop|mov r8, r8)}}
8     __NOP();
9     // CHECK: {{(bx lr)|(pop {.*pc})}}
10 }