diff options
author | David L. Jones <dlj@google.com> | 2017-11-15 01:40:05 +0000 |
---|---|---|
committer | David L. Jones <dlj@google.com> | 2017-11-15 01:40:05 +0000 |
commit | 29961b5a9b00642c770ae522a336cf2cc6077398 (patch) | |
tree | d5d975f68cc9a5b4eaa8df4bca59c298988eaede /lib/scudo/scudo_utils.h | |
parent | 5cdb7458cb1d6fc8fc83dd5a177658f1284f5d29 (diff) | |
parent | 65964b0190520f92123c3b1adb7dce481179909b (diff) | |
download | compiler-rt-google/testing.tar.gz |
Creating branches/google/testing and tags/google/testing/2017-11-14 from r317716google/testing
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/branches/google/testing@318248 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/scudo/scudo_utils.h')
-rw-r--r-- | lib/scudo/scudo_utils.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/scudo/scudo_utils.h b/lib/scudo/scudo_utils.h index 13269195b..cb7300db9 100644 --- a/lib/scudo/scudo_utils.h +++ b/lib/scudo/scudo_utils.h @@ -14,10 +14,10 @@ #ifndef SCUDO_UTILS_H_ #define SCUDO_UTILS_H_ -#include <string.h> - #include "sanitizer_common/sanitizer_common.h" +#include <string.h> + namespace __scudo { template <class Dest, class Source> @@ -34,7 +34,7 @@ enum CPUFeature { CRC32CPUFeature = 0, MaxCPUFeature, }; -bool testCPUFeature(CPUFeature feature); +bool testCPUFeature(CPUFeature Feature); INLINE u64 rotl(const u64 X, int K) { return (X << K) | (X >> (64 - K)); |