diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2015-06-15 21:02:49 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2015-06-15 21:02:49 +0000 |
commit | 6ace68554d64771f37d492c68e9763dc79e2cfd1 (patch) | |
tree | 38b43f3cd3b0455c73e8812ff17bc3339e838ffb /llvm/lib/Bitcode | |
parent | 425efcf6ea8c34b5711f910d20ba3f145b2c720f (diff) | |
download | bcm5719-llvm-6ace68554d64771f37d492c68e9763dc79e2cfd1.tar.gz bcm5719-llvm-6ace68554d64771f37d492c68e9763dc79e2cfd1.zip |
Replace @ with the more common \. NFC.
llvm-svn: 239759
Diffstat (limited to 'llvm/lib/Bitcode')
-rw-r--r-- | llvm/lib/Bitcode/Reader/BitcodeReader.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp index 6598656a4a4..8030c99c7e8 100644 --- a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp +++ b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp @@ -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 upgradeDLLImportExportLinkage(llvm::GlobalValue *GV, unsigned Val) { 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; |