[compiler-rt] r253827 - Don't use implementation namespace for include guard. Fix spacing.

Joerg Sonnenberger via llvm-commits llvm-commits at lists.llvm.org
Sun Nov 22 10:48:32 PST 2015


Author: joerg
Date: Sun Nov 22 12:48:32 2015
New Revision: 253827

URL: http://llvm.org/viewvc/llvm-project?rev=253827&view=rev
Log:
Don't use implementation namespace for include guard. Fix spacing.

Modified:
    compiler-rt/trunk/lib/builtins/ppc/DD.h

Modified: compiler-rt/trunk/lib/builtins/ppc/DD.h
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/builtins/ppc/DD.h?rev=253827&r1=253826&r2=253827&view=diff
==============================================================================
--- compiler-rt/trunk/lib/builtins/ppc/DD.h (original)
+++ compiler-rt/trunk/lib/builtins/ppc/DD.h Sun Nov 22 12:48:32 2015
@@ -1,5 +1,5 @@
-#ifndef __DD_HEADER
-#define __DD_HEADER
+#ifndef COMPILERRT_DD_HEADER
+#define COMPILERRT_DD_HEADER
 
 #include "../int_lib.h"
 
@@ -9,7 +9,7 @@ typedef union {
 		double hi;
 		double lo;
 	}s;
-}DD;
+} DD;
 
 typedef union { 
 	double d;
@@ -37,4 +37,4 @@ static __inline ALWAYS_INLINE int differ
   return result;
 }
 
-#endif /* __DD_HEADER */
+#endif /* COMPILERRT_DD_HEADER */




More information about the llvm-commits mailing list