diff options
Diffstat (limited to 'llvm/tools/llvm-exegesis/lib/BenchmarkRunner.h')
| -rw-r--r-- | llvm/tools/llvm-exegesis/lib/BenchmarkRunner.h | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/llvm-exegesis/lib/BenchmarkRunner.h b/llvm/tools/llvm-exegesis/lib/BenchmarkRunner.h index e688b81..16d3c9c 100644 --- a/llvm/tools/llvm-exegesis/lib/BenchmarkRunner.h +++ b/llvm/tools/llvm-exegesis/lib/BenchmarkRunner.h @@ -73,8 +73,8 @@ public:    // Scratch space to run instructions that touch memory.    struct ScratchSpace { -    static constexpr const size_t kAlignment = 1024; -    static constexpr const size_t kSize = 1 << 20; // 1MB. +    static constexpr size_t kAlignment = 1024; +    static constexpr size_t kSize = 1 << 20; // 1MB.      ScratchSpace()          : UnalignedPtr(std::make_unique<char[]>(kSize + kAlignment)),            AlignedPtr(  | 
