[llvm-commits] [llvm] r169404 - /llvm/trunk/lib/Target/Hexagon/HexagonFrameLowering.cpp

Matthew Curtis mcurtis at codeaurora.org
Wed Dec 5 11:00:35 PST 2012


Author: mcurtis
Date: Wed Dec  5 13:00:34 2012
New Revision: 169404

URL: http://llvm.org/viewvc/llvm-project?rev=169404&view=rev
Log:
Fix misplaced closing brace.

Modified:
    llvm/trunk/lib/Target/Hexagon/HexagonFrameLowering.cpp

Modified: llvm/trunk/lib/Target/Hexagon/HexagonFrameLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/Hexagon/HexagonFrameLowering.cpp?rev=169404&r1=169403&r2=169404&view=diff
==============================================================================
--- llvm/trunk/lib/Target/Hexagon/HexagonFrameLowering.cpp (original)
+++ llvm/trunk/lib/Target/Hexagon/HexagonFrameLowering.cpp Wed Dec  5 13:00:34 2012
@@ -166,7 +166,8 @@
   MachineBasicBlock::iterator MBBI = MBB.getLastNonDebugInstr();
   unsigned RetOpcode = MBBI->getOpcode();
 
-  return RetOpcode == Hexagon::TCRETURNtg || RetOpcode == Hexagon::TCRETURNtext;}
+  return RetOpcode == Hexagon::TCRETURNtg || RetOpcode == Hexagon::TCRETURNtext;
+}
 
 void HexagonFrameLowering::emitEpilogue(MachineFunction &MF,
                                      MachineBasicBlock &MBB) const {





More information about the llvm-commits mailing list