Chromium Code Reviews| Index: src/PNaClTranslator.cpp |
| diff --git a/src/PNaClTranslator.cpp b/src/PNaClTranslator.cpp |
| index ed2a90785c51d5a6a673b2f91c9f837639053bf9..2d4181211b935948403a625cbed022dad6771647 100644 |
| --- a/src/PNaClTranslator.cpp |
| +++ b/src/PNaClTranslator.cpp |
| @@ -2737,7 +2737,7 @@ void FunctionParser::ProcessRecord() { |
| appendErrorInstruction(ReturnType); |
| return; |
| } |
| - bool IsTailCall = static_cast<bool>(CCInfo & 1); |
| + auto IsTailCall = static_cast<bool>(CCInfo & 1); |
|
John
2016/02/07 16:18:33
bool IsTailCall = ...;
While at this, const?
Jim Stichnoth
2016/02/07 17:44:41
Done.
|
| // Create the call instruction. |
| Ice::Variable *Dest = (ReturnType == Ice::IceType_void) |