diff options
author | Necip Fazil Yildiran <necip@google.com> | 2024-11-13 17:19:43 -0800 |
---|---|---|
committer | prabhukr <prabhukr@google.com> | 2024-11-13 17:19:43 -0800 |
commit | 83d279fcc0122e48bf7c9c3ccd4a56a3aa8ca4b9 (patch) | |
tree | 4ef8ee0c87dfeab682628fcb5da929764af5bc4e | |
parent | 5699ded6b146668150f0a1e89b50c18e582bbf92 (diff) | |
download | llvm-users/Prabhuk/sprbitcodeasm-parse-metadata-value-from-operand-bundles.zip llvm-users/Prabhuk/sprbitcodeasm-parse-metadata-value-from-operand-bundles.tar.gz llvm-users/Prabhuk/sprbitcodeasm-parse-metadata-value-from-operand-bundles.tar.bz2 |
Update inline comment as suggested.users/Prabhuk/sprbitcodeasm-parse-metadata-value-from-operand-bundles
Created using spr 1.3.6-beta.1
-rw-r--r-- | llvm/lib/AsmParser/LLParser.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/lib/AsmParser/LLParser.cpp b/llvm/lib/AsmParser/LLParser.cpp index fa8c008..bfd25c98 100644 --- a/llvm/lib/AsmParser/LLParser.cpp +++ b/llvm/lib/AsmParser/LLParser.cpp @@ -3206,9 +3206,10 @@ bool LLParser::parseOptionalOperandBundles( Value *Input = nullptr; // FIXME: Metadata operand bundle value is garbage when LLVM IR is - // compiled to bitcode, then disassembled back to LLVM IR. See D107039 - // for the reproducers, and https://bugs.llvm.org/show_bug.cgi?id=51264 - // for the bug report. + // compiled to bitcode, then disassembled back to LLVM IR. + // See [PR#89649](https://github.com/llvm/llvm-project/pull/89649) + // for the reproducers, and + // https://github.com/llvm/llvm-project/issues/50608 for the bug report. if (Ty->isMetadataTy()) { if (parseMetadataAsValue(Input, PFS)) return true; |