[llvm-branch-commits] [llvm] fix: added to fix compile error (PR #67217)

2023-11-08 Thread Chris B via llvm-branch-commits
https://github.com/llvm-beanz closed https://github.com/llvm/llvm-project/pull/67217 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [llvm] fix: added to fix compile error (PR #67217)

2023-11-08 Thread Chris B via llvm-branch-commits
llvm-beanz wrote: Hi @isubasinghe, as you guessed LLVM 9 is a closed release so we're not accepting PRs into it anymore (even ones that fix pretty obvious issues). Thank you for your contribution (even though we won't be merging it). https://github.com/llvm/llvm-project/pull/67217

[llvm-branch-commits] [llvm] 30fbba9 - [𝘀𝗽𝗿] initial version

2023-11-08 Thread Scott Linder via llvm-branch-commits
Author: Scott Linder Date: 2023-11-08T21:05:35Z New Revision: 30fbba91ce82b68395b0b527ff0f34d349e6a010 URL: https://github.com/llvm/llvm-project/commit/30fbba91ce82b68395b0b527ff0f34d349e6a010 DIFF: https://github.com/llvm/llvm-project/commit/30fbba91ce82b68395b0b527ff0f34d349e6a010.diff LOG:

[llvm-branch-commits] [llvm] 28e8baf - [𝘀𝗽𝗿] initial version

2023-11-08 Thread Scott Linder via llvm-branch-commits
Author: Scott Linder Date: 2023-11-08T21:05:40Z New Revision: 28e8baf03efd7ba43a2af4afb3831caa511880ca URL: https://github.com/llvm/llvm-project/commit/28e8baf03efd7ba43a2af4afb3831caa511880ca DIFF: https://github.com/llvm/llvm-project/commit/28e8baf03efd7ba43a2af4afb3831caa511880ca.diff LOG:

[llvm-branch-commits] [llvm] [NFC][AsmPrinter] Clarify handleNewDebugValue cache of TrackedRegs (PR #71737)

2023-11-08 Thread Scott Linder via llvm-branch-commits
https://github.com/slinder1 created https://github.com/llvm/llvm-project/pull/71737 None ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [llvm] 5784f20 - [YAMLParser] Enable tests for flow scalar styles

2023-11-08 Thread Igor Kudrin via llvm-branch-commits
Author: Igor Kudrin Date: 2023-11-08T19:20:14-08:00 New Revision: 5784f2014981cdd16095e737d1d128a2995a3dbd URL: https://github.com/llvm/llvm-project/commit/5784f2014981cdd16095e737d1d128a2995a3dbd DIFF: https://github.com/llvm/llvm-project/commit/5784f2014981cdd16095e737d1d128a2995a3dbd.diff L

[llvm-branch-commits] [llvm] 69bd4da - [YAMLParser] Fix handling escaped line breaks in double-quoted scalars

2023-11-08 Thread Igor Kudrin via llvm-branch-commits
Author: Igor Kudrin Date: 2023-11-08T21:02:13-08:00 New Revision: 69bd4da46c438ce23ec0773f1d38abee800e6ed4 URL: https://github.com/llvm/llvm-project/commit/69bd4da46c438ce23ec0773f1d38abee800e6ed4 DIFF: https://github.com/llvm/llvm-project/commit/69bd4da46c438ce23ec0773f1d38abee800e6ed4.diff L

[llvm-branch-commits] [llvm] [YAMLParser] Unfold multi-line scalar values (PR #70898)

2023-11-08 Thread Igor Kudrin via llvm-branch-commits
https://github.com/igorkudrin edited https://github.com/llvm/llvm-project/pull/70898 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [llvm] [YAMLParser] Fix handling escaped line breaks in double-quoted scalars (PR #71775)

2023-11-08 Thread Igor Kudrin via llvm-branch-commits
https://github.com/igorkudrin edited https://github.com/llvm/llvm-project/pull/71775 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [llvm] [YAMLParser] Unfold multi-line scalar values (PR #70898)

2023-11-08 Thread Igor Kudrin via llvm-branch-commits
@@ -2030,187 +2030,219 @@ bool Node::failed() const { } StringRef ScalarNode::getValue(SmallVectorImpl &Storage) const { - // TODO: Handle newlines properly. We need to remove leading whitespace. - if (Value[0] == '"') { // Double quoted. -// Pull off the leading and tra

[llvm-branch-commits] [llvm] [YAMLParser] Unfold multi-line scalar values (PR #70898)

2023-11-08 Thread Igor Kudrin via llvm-branch-commits
@@ -2030,187 +2030,219 @@ bool Node::failed() const { } StringRef ScalarNode::getValue(SmallVectorImpl &Storage) const { - // TODO: Handle newlines properly. We need to remove leading whitespace. - if (Value[0] == '"') { // Double quoted. -// Pull off the leading and tra

[llvm-branch-commits] [llvm] [YAMLParser] Unfold multi-line scalar values (PR #70898)

2023-11-08 Thread Igor Kudrin via llvm-branch-commits
@@ -2030,187 +2030,219 @@ bool Node::failed() const { } StringRef ScalarNode::getValue(SmallVectorImpl &Storage) const { - // TODO: Handle newlines properly. We need to remove leading whitespace. - if (Value[0] == '"') { // Double quoted. -// Pull off the leading and tra

[llvm-branch-commits] [llvm] [YAMLParser] Unfold multi-line scalar values (PR #70898)

2023-11-08 Thread Igor Kudrin via llvm-branch-commits
igorkudrin wrote: > I don't mean to make existing debt your problem, but if it isn't too much > work could you post a pre-patch that just adds the `FileCheck`s to the > existing tests where the behavior changes, so the test diff is more > self-documenting? * Added #71774 for the tests * Also