diff options
author | Xinliang David Li <davidxl@google.com> | 2015-11-24 00:31:41 +0000 |
---|---|---|
committer | Xinliang David Li <davidxl@google.com> | 2015-11-24 00:31:41 +0000 |
commit | b46ad0a3c8a568e9a41b36848c42f45ab9665fea (patch) | |
tree | d12b091b8c20de56c1855a0aa3ce5093d19b1011 | |
parent | 8ca4a5b9e54f9c3a4c118c35a754633a961bc3fe (diff) | |
download | llvm-b46ad0a3c8a568e9a41b36848c42f45ab9665fea.zip llvm-b46ad0a3c8a568e9a41b36848c42f45ab9665fea.tar.gz llvm-b46ad0a3c8a568e9a41b36848c42f45ab9665fea.tar.bz2 |
Remove trailing space in comments
llvm-svn: 253941
-rw-r--r-- | llvm/include/llvm/ProfileData/InstrProfData.inc | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/llvm/include/llvm/ProfileData/InstrProfData.inc b/llvm/include/llvm/ProfileData/InstrProfData.inc index d92c1d3..5bb1978 100644 --- a/llvm/include/llvm/ProfileData/InstrProfData.inc +++ b/llvm/include/llvm/ProfileData/InstrProfData.inc @@ -184,13 +184,11 @@ COVMAP_FUNC_RECORD(const uint64_t, llvm::Type::getInt64Ty(Ctx), FuncHash, \ #define INSTR_PROF_CONCAT(x,y) INSTR_PROF_SIMPLE_CONCAT(x,y) /* Magic number to detect file format and endianness. - * Use 255 at one end, since no UTF-8 file can use that character. Avoid 0, - * so that utilities, like strings, don't grab it as a string. 129 is also + * Use 255 at one end, since no UTF-8 file can use that character. Avoid 0, + * so that utilities, like strings, don't grab it as a string. 129 is also * invalid UTF-8, and high enough to be interesting. - * Use "lprofr" in the centre to stand for "LLVM Profile Raw", or "lprofR" + * Use "lprofr" in the centre to stand for "LLVM Profile Raw", or "lprofR" * for 32-bit platforms. - * The magic and version need to be kept in sync with - * projects/compiler-rt/lib/profile/InstrProfiling.c */ #define INSTR_PROF_RAW_MAGIC_64 (uint64_t)255 << 56 | (uint64_t)'l' << 48 | \ (uint64_t)'p' << 40 | (uint64_t)'r' << 32 | (uint64_t)'o' << 24 | \ |