diff options
author | Steve Reinhardt <steve.reinhardt@amd.com> | 2016-02-06 17:21:19 -0800 |
---|---|---|
committer | Steve Reinhardt <steve.reinhardt@amd.com> | 2016-02-06 17:21:19 -0800 |
commit | 5592798865ece858bab2b444bc782d19121e2566 (patch) | |
tree | 80803048c903c424ed9f1200b5dc1a29ed3ff6b8 /src/arch/alpha | |
parent | dc8018a5c3482008232e6faaa2d96cf20aed7485 (diff) | |
download | gem5-5592798865ece858bab2b444bc782d19121e2566.tar.xz |
style: fix missing spaces in control statements
Result of running 'hg m5style --skip-all --fix-control -a'.
Diffstat (limited to 'src/arch/alpha')
-rw-r--r-- | src/arch/alpha/process.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/alpha/process.cc b/src/arch/alpha/process.cc index 3b37b42c7..eb1a2ee6d 100644 --- a/src/arch/alpha/process.cc +++ b/src/arch/alpha/process.cc @@ -73,7 +73,7 @@ AlphaLiveProcess::argsInit(int intSize, int pageSize) std::vector<auxv_t> auxv; ElfObject * elfObject = dynamic_cast<ElfObject *>(objFile); - if(elfObject) + if (elfObject) { // modern glibc uses a bunch of auxiliary vectors to set up // TLS as well as do a bunch of other stuff |