1 // REQUIRES: ldrex
2 // 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
3 
4 #include "cmsis_compiler.h"
5 
clrex()6 void clrex() {
7     // CHECK-LABEL: <clrex>:
8     // CHECK: clrex
9     __CLREX();
10     // CHECK: {{(bx lr)|(pop {.*pc})}}
11 }
12 
13