[PATCH] D14525: Remove unused local variable

Andy Ayers via llvm-commits llvm-commits at lists.llvm.org
Mon Nov 9 19:13:56 PST 2015


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;
 }


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D14525.39779.patch
Type: text/x-patch
Size: 540 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20151110/c5166523/attachment.bin>


More information about the llvm-commits mailing list