Skip to content

Commit d34a251

Browse files
committed
Accidental newline
1 parent 38f95fa commit d34a251

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/test/Sema/atomic-ops.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -827,7 +827,7 @@ void nullPointerWarning(void) {
827827
(void)__atomic_fetch_min((int*)0, 42, memory_order_relaxed); // expected-warning {{null passed to a callee that requires a non-null argument}}
828828
(void)__atomic_fetch_max((volatile int*)0, 42, memory_order_relaxed); // expected-warning {{null passed to a callee that requires a non-null argument}}
829829
(void)__atomic_fetch_max((int*)0, 42, memory_order_relaxed); // expected-warning {{null passed to a callee that requires a non-null argument}}
830-
830+
831831
// These don't warn: the "desired" parameter is passed by value. Even for
832832
// atomic pointers the "desired" result can be NULL.
833833
__c11_atomic_init(&vai, 0);

0 commit comments

Comments
 (0)