]> begriffs open source - cmsis/blob - CMSIS/Core/Test/clrex.c
Add LLVM LIT/FileCheck tests for Core files
[cmsis] / CMSIS / Core / Test / clrex.c
1 // REQUIRES: ldrex
2 // RUN: %cc% %ccflags% %ccout% %s.o %s; llvm-objdump --mcpu=%mcpu% -d %s.o | FileCheck --allow-unused-prefixes --check-prefixes %prefixes% %s
3
4 #include "cmsis_compiler.h"
5
6 void clrex() {
7     // CHECK-LABEL: <clrex>:
8     // CHECK: clrex
9     __CLREX();
10     // CHECK: {{(bx lr)|(pop {.*pc})}}
11 }
12