Fix linting error reported by clang-format

This commit is contained in:
Niyas Sait 2021-11-15 10:31:21 +00:00
parent c3b3ea7ec2
commit 0d86aa517f

View File

@ -249,7 +249,7 @@ uint64_t zmq::clock_t::rdtsc ()
((9 & 15) << 7) | // crn ((9 & 15) << 7) | // crn
((13 & 15) << 3) | // crm ((13 & 15) << 3) | // crm
((0 & 7) << 0)); // op2 ((0 & 7) << 0)); // op2
return _ReadStatusReg(pmccntr_el0); return _ReadStatusReg (pmccntr_el0);
#elif (defined __GNUC__ && (defined __i386__ || defined __x86_64__)) #elif (defined __GNUC__ && (defined __i386__ || defined __x86_64__))
uint32_t low, high; uint32_t low, high;
__asm__ volatile("rdtsc" : "=a"(low), "=d"(high)); __asm__ volatile("rdtsc" : "=a"(low), "=d"(high));