diff options
author | Dan Gohman <gohman@apple.com> | 2007-11-19 20:46:23 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2007-11-19 20:46:23 +0000 |
commit | 50cdabcfd52e88381ade61450d98a1c757195bef (patch) | |
tree | 487cb54b6e194c6023b5e01a1fb2752bbb4bb905 /lib/Target/PowerPC/PPCTargetMachine.cpp | |
parent | daf9bc8eee3eb1bc992480921f50ef1b760f4159 (diff) |
Remove meaningless qualifiers from return types, avoiding compiler warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44240 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCTargetMachine.cpp')
-rw-r--r-- | lib/Target/PowerPC/PPCTargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/PowerPC/PPCTargetMachine.cpp b/lib/Target/PowerPC/PPCTargetMachine.cpp index 86da3d7825..a09681ab15 100644 --- a/lib/Target/PowerPC/PPCTargetMachine.cpp +++ b/lib/Target/PowerPC/PPCTargetMachine.cpp @@ -101,7 +101,7 @@ PPCTargetMachine::PPCTargetMachine(const Module &M, const std::string &FS, /// Override this for PowerPC. Tail merging happily breaks up instruction issue /// groups, which typically degrades performance. -const bool PPCTargetMachine::getEnableTailMergeDefault() const { return false; } +bool PPCTargetMachine::getEnableTailMergeDefault() const { return false; } PPC32TargetMachine::PPC32TargetMachine(const Module &M, const std::string &FS) : PPCTargetMachine(M, FS, false) { |