diff options
author | Daniel R. Carvalho <odanrc@yahoo.com.br> | 2018-02-05 16:32:23 +0100 |
---|---|---|
committer | Daniel Carvalho <mr.danrc@gmail.com> | 2018-02-06 10:26:27 +0000 |
commit | ecee328c9244504f616a3b8cd352fca3d3e4b6e7 (patch) | |
tree | 4a551953d452215f091491226c2c78d74d085401 /src/mem/ruby/system/VIPERCoalescer.hh | |
parent | d5b9ffda458c0e1b7ad52b42d7c8caf2b4a5c022 (diff) | |
download | gem5-ecee328c9244504f616a3b8cd352fca3d3e4b6e7.tar.xz |
mem: Standardize mem folder header guards
Standardize all header guards in the mem directory according to the most
frequent patterns. In general they have the form:
mem: __FOLDER_TREE_FILE_NAME_HH__
ruby: __FOLDER_TREE_FILENAME_HH__
Change-Id: I983853e292deb302becf151bf0e970057dc24774
Reviewed-on: https://gem5-review.googlesource.com/7881
Reviewed-by: Nikos Nikoleris <nikos.nikoleris@arm.com>
Maintainer: Nikos Nikoleris <nikos.nikoleris@arm.com>
Diffstat (limited to 'src/mem/ruby/system/VIPERCoalescer.hh')
-rw-r--r-- | src/mem/ruby/system/VIPERCoalescer.hh | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mem/ruby/system/VIPERCoalescer.hh b/src/mem/ruby/system/VIPERCoalescer.hh index af6e44e7f..76241022e 100644 --- a/src/mem/ruby/system/VIPERCoalescer.hh +++ b/src/mem/ruby/system/VIPERCoalescer.hh @@ -33,8 +33,8 @@ * Author: Sooraj Puthoor */ -#ifndef __MEM_RUBY_SYSTEM_VI_COALESCER_HH__ -#define __MEM_RUBY_SYSTEM_VI_COALESCER_HH__ +#ifndef __MEM_RUBY_SYSTEM_VIPERCOALESCER_HH__ +#define __MEM_RUBY_SYSTEM_VIPERCOALESCER_HH__ #include <iostream> @@ -71,5 +71,4 @@ class VIPERCoalescer : public GPUCoalescer uint64_t m_max_inv_per_cycle; uint64_t m_max_wb_per_cycle; }; -#endif // __MEM_RUBY_SYSTEM_VI_COALESCER_HH__ - +#endif //__MEM_RUBY_SYSTEM_VIPERCOALESCER_HH__ |