[llvm] Trim trailing whitespaces in MCInstrAnalysis.h. NFC. (PR #85805)
Stanislav Mekhanoshin via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 19 08:41:58 PDT 2024
https://github.com/rampitec created https://github.com/llvm/llvm-project/pull/85805
None
>From 63db4ab9cdac5729ee0f4e240ad3354a21202e9e Mon Sep 17 00:00:00 2001
From: Stanislav Mekhanoshin <Stanislav.Mekhanoshin at amd.com>
Date: Tue, 19 Mar 2024 08:40:46 -0700
Subject: [PATCH] Trim trailing whitespaces in MCInstrAnalysis.h. NFC.
---
llvm/include/llvm/MC/MCInstrAnalysis.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/llvm/include/llvm/MC/MCInstrAnalysis.h b/llvm/include/llvm/MC/MCInstrAnalysis.h
index e3ddf0b8b8939c..87db57f74f520e 100644
--- a/llvm/include/llvm/MC/MCInstrAnalysis.h
+++ b/llvm/include/llvm/MC/MCInstrAnalysis.h
@@ -123,14 +123,14 @@ class MCInstrAnalysis {
/// broken. Each bit of the mask is associated with a specific input operand.
/// Bits associated with explicit input operands are laid out first in the
/// mask; implicit operands come after explicit operands.
- ///
+ ///
/// Dependencies are broken only for operands that have their corresponding bit
/// set. Operands that have their bit cleared, or that don't have a
/// corresponding bit in the mask don't have their dependency broken. Note
/// that Mask may not be big enough to describe all operands. The assumption
/// for operands that don't have a correspondent bit in the mask is that those
/// are still data dependent.
- ///
+ ///
/// The only exception to the rule is for when Mask has all zeroes.
/// A zero mask means: dependencies are broken for all explicit register
/// operands.
More information about the llvm-commits
mailing list