]> granicus.if.org Git - clang/commitdiff
Fix 80 col violations.
authorDaniel Dunbar <daniel@zuster.org>
Fri, 26 Mar 2010 20:17:17 +0000 (20:17 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Fri, 26 Mar 2010 20:17:17 +0000 (20:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@99648 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Headers/mm_malloc.h

index 8dd1f7b31f88c8ba58ff771c19f077f6a7fbf7b7..fba865120b29a8164ab878391f516cf25e364e85 100644 (file)
@@ -27,7 +27,8 @@
 #include <errno.h>
 #include <stdlib.h>
 
-static __inline__ void *__attribute__((__always_inline__, __nodebug__)) _mm_malloc(size_t size, size_t align)
+static __inline__ void *__attribute__((__always_inline__, __nodebug__))
+_mm_malloc(size_t size, size_t align)
 {
   if (align & (align - 1)) {
     errno = EINVAL;
@@ -44,13 +45,15 @@ static __inline__ void *__attribute__((__always_inline__, __nodebug__)) _mm_mall
   if (!mallocedMemory)
     return 0;
 
-  void *alignedMemory = (void *)(((size_t)mallocedMemory + align) & ~((size_t)align - 1));
+  void *alignedMemory =
+    (void *)(((size_t)mallocedMemory + align) & ~((size_t)align - 1));
   ((void **)alignedMemory)[-1] = mallocedMemory;
 
   return alignedMemory;
 }
 
-static __inline__ void __attribute__((__always_inline__, __nodebug__)) _mm_free(void *p)
+static __inline__ void __attribute__((__always_inline__, __nodebug__))
+_mm_free(void *p)
 {
   if (p)
     free(((void **)p)[-1]);