From: Simon Pilgrim Date: Tue, 9 Jun 2020 12:53:22 +0000 (+0100) Subject: Fix Wdocumentation warning. NFC. X-Git-Tag: llvmorg-12-init~3628 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a375463ad0630cab3a5b62d534ad64f822a20406;p=platform%2Fupstream%2Fllvm.git Fix Wdocumentation warning. NFC. The raw unsigned Opc value has been replaced with the ShuffleVectorPseudo MatchInfo wrapper struct. --- diff --git a/llvm/lib/Target/AArch64/GISel/AArch64PostLegalizerCombiner.cpp b/llvm/lib/Target/AArch64/GISel/AArch64PostLegalizerCombiner.cpp index 67c0e78..bee1872 100644 --- a/llvm/lib/Target/AArch64/GISel/AArch64PostLegalizerCombiner.cpp +++ b/llvm/lib/Target/AArch64/GISel/AArch64PostLegalizerCombiner.cpp @@ -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);