[compiler-rt] r218096 - builtins: 80-column

Saleem Abdulrasool compnerd at compnerd.org
Thu Sep 18 18:35:08 PDT 2014


Author: compnerd
Date: Thu Sep 18 20:35:08 2014
New Revision: 218096

URL: http://llvm.org/viewvc/llvm-project?rev=218096&view=rev
Log:
builtins: 80-column

Re-wrap a couple of lines.  NFC.

Modified:
    compiler-rt/trunk/lib/builtins/int_endianness.h

Modified: compiler-rt/trunk/lib/builtins/int_endianness.h
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/builtins/int_endianness.h?rev=218096&r1=218095&r2=218096&view=diff
==============================================================================
--- compiler-rt/trunk/lib/builtins/int_endianness.h (original)
+++ compiler-rt/trunk/lib/builtins/int_endianness.h Thu Sep 18 20:35:08 2014
@@ -33,7 +33,8 @@
 
 /* .. */
 
-#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__DragonFly__) || defined(__minix)
+#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__DragonFly__) ||   \
+    defined(__minix)
 #include <sys/endian.h>
 
 #if _BYTE_ORDER == _BIG_ENDIAN
@@ -61,7 +62,8 @@
 
 /* .. */
 
-/* Mac OSX has __BIG_ENDIAN__ or __LITTLE_ENDIAN__ automatically set by the compiler (at least with GCC) */
+/* Mac OSX has __BIG_ENDIAN__ or __LITTLE_ENDIAN__ automatically set by the
+ * compiler (at least with GCC) */
 #if defined(__APPLE__) || defined(__ellcc__ )
 
 #ifdef __BIG_ENDIAN__





More information about the llvm-commits mailing list