Skip to content

Commit 8209326

Browse files
committed
format
Signed-off-by: Sarnie, Nick <[email protected]>
1 parent 62328ab commit 8209326

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

clang/lib/Headers/arm_acle.h

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,31 +42,36 @@ extern "C" {
4242
/* 7.4 Hints */
4343

4444
#if !__has_builtin(__wfi)
45-
static __inline__ void __attribute__((__always_inline__, __nodebug__)) __wfi(void) {
45+
static __inline__ void __attribute__((__always_inline__, __nodebug__))
46+
__wfi(void) {
4647
__builtin_arm_wfi();
4748
}
4849
#endif
4950

5051
#if !__has_builtin(__wfe)
51-
static __inline__ void __attribute__((__always_inline__, __nodebug__)) __wfe(void) {
52+
static __inline__ void __attribute__((__always_inline__, __nodebug__))
53+
__wfe(void) {
5254
__builtin_arm_wfe();
5355
}
5456
#endif
5557

5658
#if !__has_builtin(__sev)
57-
static __inline__ void __attribute__((__always_inline__, __nodebug__)) __sev(void) {
59+
static __inline__ void __attribute__((__always_inline__, __nodebug__))
60+
__sev(void) {
5861
__builtin_arm_sev();
5962
}
6063
#endif
6164

6265
#if !__has_builtin(__sevl)
63-
static __inline__ void __attribute__((__always_inline__, __nodebug__)) __sevl(void) {
66+
static __inline__ void __attribute__((__always_inline__, __nodebug__))
67+
__sevl(void) {
6468
__builtin_arm_sevl();
6569
}
6670
#endif
6771

6872
#if !__has_builtin(__yield)
69-
static __inline__ void __attribute__((__always_inline__, __nodebug__)) __yield(void) {
73+
static __inline__ void __attribute__((__always_inline__, __nodebug__))
74+
__yield(void) {
7075
__builtin_arm_yield();
7176
}
7277
#endif

0 commit comments

Comments
 (0)