Victor Hernandez
2009-Oct-24 04:29 UTC
[LLVMdev] [PATCH] remove usage of RaiseAllocations pass from llvm-gcc
After LLVM rev 84987, the RaiseAllocations pass no longer exists. llvm-gcc needs to be patched: Index: gcc/llvm-linker-hack.cpp ==================================================================--- gcc/llvm-linker-hack.cpp (revision 84984) +++ gcc/llvm-linker-hack.cpp (working copy) @@ -80,7 +80,6 @@ llvm::createJumpThreadingPass(); llvm::createFunctionInliningPass(); llvm::createAlwaysInlinerPass(); - llvm::createRaiseAllocationsPass(); llvm::createSimplifyLibCallsPass(); llvm::createArgumentPromotionPass(); llvm::createDeadArgEliminationPass(); -------------- next part -------------- A non-text attachment was scrubbed... Name: RemoveRaiseAllocations.diff Type: application/octet-stream Size: 478 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20091023/5b51e4f5/attachment.obj> -------------- next part -------------- Unfortunately, I am not currently able to commit to llvm-gcc, so if someone can commit this patch, I'd appreciate it. thanks, Victor
Eric Christopher
2009-Oct-24 04:54 UTC
[LLVMdev] [llvm-commits] [PATCH] remove usage of RaiseAllocations pass from llvm-gcc
> > > Unfortunately, I am not currently able to commit to llvm-gcc, so if someone can commit this patch, I'd appreciate it.Committed via: [ghostwheel:~/sources/llvm-gcc-4.2/gcc] echristo% svn ci llvm-linker-hack.cpp Sending llvm-linker-hack.cpp Transmitting file data . Committed revision 84990. Thanks! -eric