Remove unnecessary by-reference return.

llvm-svn: 114099
This commit is contained in:
Jim Grosbach 2010-09-16 17:45:21 +00:00
parent 218e22da8b
commit bf15e7b544
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ public:
ImmVal = Val;
}
const double &getFPImm() const {
const double getFPImm() const {
assert(isFPImm() && "This is not an FP immediate");
return FPImmVal;
}