| Index: src/PNaClTranslator.h
|
| diff --git a/src/PNaClTranslator.h b/src/PNaClTranslator.h
|
| index b8764a6d1656822079ae15ce98f29546ac8a2606..2b000080730a3e9630fc5f9057429905a5917596 100644
|
| --- a/src/PNaClTranslator.h
|
| +++ b/src/PNaClTranslator.h
|
| @@ -34,13 +34,13 @@ class PNaClTranslator : public Translator {
|
| public:
|
| explicit PNaClTranslator(GlobalContext *Ctx) : Translator(Ctx) {}
|
|
|
| - // Reads the PNaCl bitcode file and translates to ICE, which is then
|
| - // converted to machine code. Sets ErrorStatus to 1 if any errors
|
| - // occurred. Takes ownership of the MemoryObject.
|
| + /// Reads the PNaCl bitcode file and translates to ICE, which is then
|
| + /// converted to machine code. Sets ErrorStatus to 1 if any errors
|
| + /// occurred. Takes ownership of the MemoryObject.
|
| void translate(const std::string &IRFilename,
|
| std::unique_ptr<llvm::MemoryObject> &&MemoryObject);
|
|
|
| - // Reads MemBuf, assuming it is the PNaCl bitcode contents of IRFilename.
|
| + /// Reads MemBuf, assuming it is the PNaCl bitcode contents of IRFilename.
|
| void translateBuffer(const std::string &IRFilename,
|
| llvm::MemoryBuffer *MemBuf);
|
| };
|
|
|