Don't use implementation namespace for include guard. Fix spacing.

llvm-svn: 253827
This commit is contained in:
Joerg Sonnenberger 2015-11-22 18:48:32 +00:00
parent 0969a2a74c
commit 0a22a96dc6
1 changed files with 4 additions and 4 deletions

View File

@ -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 different_sign(double x, double y) {
return result;
}
#endif /* __DD_HEADER */
#endif /* COMPILERRT_DD_HEADER */