Fix Wdocumentation warning. NFC.
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Tue, 9 Jun 2020 12:53:22 +0000 (13:53 +0100)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Tue, 9 Jun 2020 12:53:39 +0000 (13:53 +0100)
The raw unsigned Opc value has been replaced with the ShuffleVectorPseudo MatchInfo wrapper struct.

llvm/lib/Target/AArch64/GISel/AArch64PostLegalizerCombiner.cpp

index 67c0e78..bee1872 100644 (file)
@@ -1,4 +1,4 @@
-//=== lib/CodeGen/GlobalISel/AArch64PostLegalizerCombiner.cpp -------------===//
+ //=== lib/CodeGen/GlobalISel/AArch64PostLegalizerCombiner.cpp -------------===//
 //
 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 // See https://llvm.org/LICENSE.txt for license information.
@@ -162,7 +162,7 @@ static bool matchREV(MachineInstr &MI, MachineRegisterInfo &MRI,
 /// a G_UZP1 or G_UZP2 instruction.
 ///
 /// \param [in] MI - The shuffle vector instruction.
-/// \param [out] Opc - Either G_UZP1 or G_UZP2 on success.
+/// \param [out] MatchInfo - Either G_UZP1 or G_UZP2 on success.
 static bool matchUZP(MachineInstr &MI, MachineRegisterInfo &MRI,
                      ShuffleVectorPseudo &MatchInfo) {
   assert(MI.getOpcode() == TargetOpcode::G_SHUFFLE_VECTOR);