[llvm-branch-commits] [llvm-branch] r85302 - /llvm/branches/Apple/Leela/include/llvm/CodeGen/MachineFunction.h

Bill Wendling isanbard at gmail.com
Tue Oct 27 13:56:13 PDT 2009


Author: void
Date: Tue Oct 27 15:56:13 2009
New Revision: 85302

URL: http://llvm.org/viewvc/llvm-project?rev=85302&view=rev
Log:
$ svn merge -c 84294 https://llvm.org/svn/llvm-project/llvm/trunk
--- Merging r84294 into '.':
U    include/llvm/CodeGen/MachineFunction.h


Modified:
    llvm/branches/Apple/Leela/include/llvm/CodeGen/MachineFunction.h

Modified: llvm/branches/Apple/Leela/include/llvm/CodeGen/MachineFunction.h
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/Apple/Leela/include/llvm/CodeGen/MachineFunction.h?rev=85302&r1=85301&r2=85302&view=diff

==============================================================================
--- llvm/branches/Apple/Leela/include/llvm/CodeGen/MachineFunction.h (original)
+++ llvm/branches/Apple/Leela/include/llvm/CodeGen/MachineFunction.h Tue Oct 27 15:56:13 2009
@@ -267,6 +267,9 @@
   void splice(iterator InsertPt, iterator MBBI) {
     BasicBlocks.splice(InsertPt, BasicBlocks, MBBI);
   }
+  void splice(iterator InsertPt, iterator MBBI, iterator MBBE) {
+    BasicBlocks.splice(InsertPt, BasicBlocks, MBBI, MBBE);
+  }
 
   void remove(iterator MBBI) {
     BasicBlocks.remove(MBBI);





More information about the llvm-branch-commits mailing list