Chromium Code Reviews| Index: src/IceTranslator.h |
| diff --git a/src/IceTranslator.h b/src/IceTranslator.h |
| index 29b2d77eb73ce02578d5194c3042fb5eea7c2431..a3711266a6656ae630f3689ea7e6adb8e7557bd3 100644 |
| --- a/src/IceTranslator.h |
| +++ b/src/IceTranslator.h |
| @@ -29,9 +29,9 @@ class Cfg; |
| class VariableDeclaration; |
| class GlobalContext; |
| -// Base class for translating ICE to machine code. Derived classes convert |
| -// other intermediate representations down to ICE, and then call the appropriate |
| -// (inherited) methods to convert ICE into machine instructions. |
| +/// Base class for translating ICE to machine code. Derived classes convert |
| +/// other intermediate representations down to ICE, and then call the appropriate |
|
jvoung (off chromium)
2015/06/30 22:05:48
reflow
ascull
2015/07/06 19:29:10
Done.
|
| +/// (inherited) methods to convert ICE into machine instructions. |
| class Translator { |
| Translator() = delete; |
| Translator(const Translator &) = delete; |
| @@ -70,7 +70,7 @@ public: |
| protected: |
| GlobalContext *Ctx; |
| uint32_t NextSequenceNumber; |
| - // ErrorCode of the translation. |
| + /// ErrorCode of the translation. |
| ErrorCode ErrorStatus; |
| }; |