]> granicus.if.org Git - llvm/commitdiff
[X86] Remove \brief in FixupBW. NFC.
authorAhmed Bougacha <ahmed.bougacha@gmail.com>
Fri, 6 May 2016 17:28:47 +0000 (17:28 +0000)
committerAhmed Bougacha <ahmed.bougacha@gmail.com>
Fri, 6 May 2016 17:28:47 +0000 (17:28 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@268754 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86FixupBWInsts.cpp

index 1fa2855264f1ac5af561d8ddd2c107edbf694d00..045a4ed8dcae2c2bed4883c2fda94dcb2fe1ec75 100644 (file)
@@ -78,21 +78,19 @@ class FixupBWInstPass : public MachineFunctionPass {
     return "X86 Byte/Word Instruction Fixup";
   }
 
-  /// \brief Loop over all of the instructions in the basic block
-  /// replacing applicable byte or word instructions with better
-  /// alternatives.
+  /// Loop over all of the instructions in the basic block replacing applicable
+  /// byte or word instructions with better alternatives.
   void processBasicBlock(MachineFunction &MF, MachineBasicBlock &MBB);
 
-  /// \brief This sets the \p SuperDestReg to the 32 bit super reg
-  /// of the original destination register of the MachineInstr
-  /// passed in. It returns true if that super register is dead
-  /// just prior to \p OrigMI, and false if not.
+  /// This sets the \p SuperDestReg to the 32 bit super reg of the original
+  /// destination register of the MachineInstr passed in. It returns true if
+  /// that super register is dead just prior to \p OrigMI, and false if not.
   bool getSuperRegDestIfDead(MachineInstr *OrigMI,
                              unsigned &SuperDestReg) const;
 
-  /// \brief Change the MachineInstr \p MI into the equivalent extending load
-  /// to 32 bit register if it is safe to do so.  Return the replacement
-  /// instruction if OK, otherwise return nullptr.
+  /// Change the MachineInstr \p MI into the equivalent extending load to 32 bit
+  /// register if it is safe to do so.  Return the replacement instruction if
+  /// OK, otherwise return nullptr.
   MachineInstr *tryReplaceLoad(unsigned New32BitOpcode, MachineInstr *MI) const;
 
 public:
@@ -104,9 +102,9 @@ public:
     MachineFunctionPass::getAnalysisUsage(AU);
   }
 
-  /// \brief Loop over all of the basic blocks,
-  /// replacing byte and word instructions by equivalent 32 bit instructions
-  /// where performance or code size can be improved.
+  /// Loop over all of the basic blocks, replacing byte and word instructions by
+  /// equivalent 32 bit instructions where performance or code size can be
+  /// improved.
   bool runOnMachineFunction(MachineFunction &MF) override;
 
   MachineFunctionProperties getRequiredProperties() const override {