diff options
| author | Craig Topper <craig.topper@intel.com> | 2018-04-24 17:40:47 +0000 |
|---|---|---|
| committer | Craig Topper <craig.topper@intel.com> | 2018-04-24 17:40:47 +0000 |
| commit | bd16b112554990be42e082de2236f762a50d2375 (patch) | |
| tree | 5adf08a5c05a45c1628ce10d6e0e6088aef034ae /clang/lib/Headers/popcntintrin.h | |
| parent | ebc7c74f2f54a3cb6cf86ab26e1296f8311f11e9 (diff) | |
| download | bcm5719-llvm-bd16b112554990be42e082de2236f762a50d2375.tar.gz bcm5719-llvm-bd16b112554990be42e082de2236f762a50d2375.zip | |
[X86] Consistently use double underscore at the beginning of the include guards in our intrinsic headers.
Most files used double underscore, but a few used single. This converges them all to double.
llvm-svn: 330743
Diffstat (limited to 'clang/lib/Headers/popcntintrin.h')
| -rw-r--r-- | clang/lib/Headers/popcntintrin.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/Headers/popcntintrin.h b/clang/lib/Headers/popcntintrin.h index 0b4793e58bc..72ed38dc1fe 100644 --- a/clang/lib/Headers/popcntintrin.h +++ b/clang/lib/Headers/popcntintrin.h @@ -21,8 +21,8 @@ *===-----------------------------------------------------------------------=== */ -#ifndef _POPCNTINTRIN_H -#define _POPCNTINTRIN_H +#ifndef __POPCNTINTRIN_H +#define __POPCNTINTRIN_H /* Define the default attributes for the functions in this file. */ #define __DEFAULT_FN_ATTRS __attribute__((__always_inline__, __nodebug__, __target__("popcnt"))) @@ -95,4 +95,4 @@ _popcnt64(long long __A) #undef __DEFAULT_FN_ATTRS -#endif /* _POPCNTINTRIN_H */ +#endif /* __POPCNTINTRIN_H */ |

