[llvm] r239759 - Replace @ with the more common \. NFC.

Rafael Espindola rafael.espindola at gmail.com
Mon Jun 15 14:02:49 PDT 2015


Author: rafael
Date: Mon Jun 15 16:02:49 2015
New Revision: 239759

URL: http://llvm.org/viewvc/llvm-project?rev=239759&view=rev
Log:
Replace @ with the more common \. NFC.

Modified:
    llvm/trunk/lib/Bitcode/Reader/BitcodeReader.cpp

Modified: llvm/trunk/lib/Bitcode/Reader/BitcodeReader.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Bitcode/Reader/BitcodeReader.cpp?rev=239759&r1=239758&r2=239759&view=diff
==============================================================================
--- llvm/trunk/lib/Bitcode/Reader/BitcodeReader.cpp (original)
+++ llvm/trunk/lib/Bitcode/Reader/BitcodeReader.cpp Mon Jun 15 16:02:49 2015
@@ -239,13 +239,13 @@ public:
   std::vector<StructType *> getIdentifiedStructTypes() const override;
   void dematerialize(GlobalValue *GV) override;
 
-  /// @brief Main interface to parsing a bitcode buffer.
-  /// @returns true if an error occurred.
+  /// \brief Main interface to parsing a bitcode buffer.
+  /// \returns true if an error occurred.
   std::error_code parseBitcodeInto(Module *M,
                                    bool ShouldLazyLoadMetadata = false);
 
-  /// @brief Cheap mechanism to just extract module triple
-  /// @returns true if an error occurred.
+  /// \brief Cheap mechanism to just extract module triple
+  /// \returns true if an error occurred.
   ErrorOr<std::string> parseTriple();
 
   static uint64_t decodeSignRotatedValue(uint64_t V);
@@ -707,7 +707,7 @@ static void upgradeDLLImportExportLinkag
 
 namespace llvm {
 namespace {
-  /// @brief A class for maintaining the slot number definition
+  /// \brief A class for maintaining the slot number definition
   /// as a placeholder for the actual definition for forward constants defs.
   class ConstantPlaceHolder : public ConstantExpr {
     void operator=(const ConstantPlaceHolder &) = delete;
@@ -721,7 +721,7 @@ namespace {
       Op<0>() = UndefValue::get(Type::getInt32Ty(Context));
     }
 
-    /// @brief Methods to support type inquiry through isa, cast, and dyn_cast.
+    /// \brief Methods to support type inquiry through isa, cast, and dyn_cast.
     static bool classof(const Value *V) {
       return isa<ConstantExpr>(V) &&
              cast<ConstantExpr>(V)->getOpcode() == Instruction::UserOp1;





More information about the llvm-commits mailing list