forked from OSchip/llvm-project
[Remarks][NFC] Use StringLiteral for magic numbers
llvm-svn: 371869
This commit is contained in:
parent
14bfb56b1a
commit
1d6fb061cf
|
@ -25,7 +25,7 @@ namespace remarks {
|
||||||
/// Note: this is different from the version of the remark entry.
|
/// Note: this is different from the version of the remark entry.
|
||||||
constexpr uint64_t CurrentContainerVersion = 0;
|
constexpr uint64_t CurrentContainerVersion = 0;
|
||||||
/// The magic number used for identifying remark blocks.
|
/// The magic number used for identifying remark blocks.
|
||||||
constexpr StringRef ContainerMagic("RMRK", 4);
|
constexpr StringLiteral ContainerMagic("RMRK");
|
||||||
|
|
||||||
/// Type of the remark container.
|
/// Type of the remark container.
|
||||||
/// The remark container has two modes:
|
/// The remark container has two modes:
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
namespace remarks {
|
namespace remarks {
|
||||||
|
|
||||||
constexpr StringRef Magic("REMARKS", 7);
|
constexpr StringLiteral Magic("REMARKS");
|
||||||
|
|
||||||
/// The format used for serializing/deserializing remarks.
|
/// The format used for serializing/deserializing remarks.
|
||||||
enum class Format { Unknown, YAML, YAMLStrTab, Bitstream };
|
enum class Format { Unknown, YAML, YAMLStrTab, Bitstream };
|
||||||
|
|
Loading…
Reference in New Issue