[PATCH] D14525: Remove unused local variable

David Blaikie via llvm-commits llvm-commits at lists.llvm.org
Mon Nov 9 19:19:52 PST 2015


committed something like this along with another fix in 252580

Feel free to just commit stuff like this without review in the future, if
you have commit access - it's simple enough.

On Mon, Nov 9, 2015 at 7:13 PM, Andy Ayers via llvm-commits <
llvm-commits at lists.llvm.org> wrote:

> AndyAyers created this revision.
> AndyAyers added a subscriber: llvm-commits.
> AndyAyers set the repository for this revision to rL LLVM.
>
> Fix warning caused by unused local variable.  NFC.
>
>
> Repository:
>   rL LLVM
>
> http://reviews.llvm.org/D14525
>
> Files:
>   lib/Target/X86/X86FrameLowering.cpp
>
> Index: lib/Target/X86/X86FrameLowering.cpp
> ===================================================================
> --- lib/Target/X86/X86FrameLowering.cpp
> +++ lib/Target/X86/X86FrameLowering.cpp
> @@ -749,8 +749,8 @@
>
>    assert(InProlog && "ChkStkStub called outside prolog!");
>
> -  MachineInstrBuilder CI = BuildMI(MBB, MBBI, DL,
> TII.get(X86::CALLpcrel32))
> -                               .addExternalSymbol("__chkstk_stub");
> +  BuildMI(MBB, MBBI, DL, TII.get(X86::CALLpcrel32))
> +      .addExternalSymbol("__chkstk_stub");
>
>    return MBBI;
>  }
>
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at lists.llvm.org
> http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20151109/432346e9/attachment.html>


More information about the llvm-commits mailing list