search for: arbeitskopie

Displaying 10 results from an estimated 10 matches for "arbeitskopie".

2008 Apr 29
0
[LLVMdev] [PATCH] use-diet for review
...=// + +/// Tag - generic tag type for (at least 32 bit) pointers +enum Tag { noTag, tagOne, tagTwo, tagThree }; Why such a generic pointer tagging mechanism? This should either be specific to the application or in a shared location (e.g. include/llvm/ Support). +++ include/llvm/Instructions.h (Arbeitskopie) @@ -21,10 +21,10 @@ #include "llvm/DerivedTypes.h" #include "llvm/ParameterAttributes.h" +#include "llvm/BasicBlock.h" Why the #include? Please avoid this if possible. Why are operand lists stored as templates instead of arrays? "Op<0>" is ver...
2008 Apr 29
5
[LLVMdev] [PATCH] use-diet for review
Hi all, I have reported more than enough about the space savings achieved and the associated costs, here comes the current patch for review. Since this one is substantially smaller than the previous one, I did not cut it in pieces. The front part is about headers and the rest the .cpp and other files. Cheers, Gabor -------------- next part -------------- An embedded and charset-unspecified
2006 Apr 21
5
optim "CG" bug w/patch proposal (PR#8786)
...f,method="CG",control=list(trace=0,type=1)) $par 19280.68 -10622.32 $value -0.2346207 # should be 2! optim(c(0.1,-0.1),f,method="CG",control=list(trace=0,type=2)) $par 3834.021 -2718.958 $value -0.0009983175 # should be 2! Fix: --- optim.c (Revision 37878) +++ optim.c (Arbeitskopie) @@ -970,7 +970,8 @@ if (!accpoint) { steplength *= stepredn; if (trace) Rprintf("*"); - } + } else + *Fmin = f;...
2010 Apr 20
5
Tremor maintenance
...eamer (https://bugzilla.gnome.org/show_bug.cgi?id=616194). 0002-pkgconfig.patch this adds a pkg config file You probably also want to do something like Index: configure.in =================================================================== --- configure.in (Revision 17148) +++ configure.in (Arbeitskopie) @@ -11,7 +11,7 @@ AM_CONFIG_HEADER([config.h]) -AM_INIT_AUTOMAKE(libvorbisidec,1.2.0) +AM_INIT_AUTOMAKE(libvorbisidec,1.0.2) to avoid confiusion with the version (see CHANGELOG). There are bugs for debian/ubuntu regarding this. If someone applies patches, I can send more to cleanup autofoo...
2013 Dec 03
1
[LLVMdev] Please update LDC references on LLVM website
...edu >> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > > -------------- next part -------------- Index: ProjectsWithLLVM/index.html =================================================================== --- ProjectsWithLLVM/index.html (Revision 196291) +++ ProjectsWithLLVM/index.html (Arbeitskopie) @@ -43,7 +43,7 @@ <li><a href="#tta-tce">TTA-based Codesign Environment (TCE)</a></li> <li><a href="#icedtea">The IcedTea Version of Sun's OpenJDK</a></li> <li><a href="#pure">The Pure Programming Lang...
2016 May 04
2
OrcLazyJIT for windows
Hi David, This is really cool. I'd love to get this in-tree. There are two ways we could go about this: (1) Make the OrcArchitecture interface ABI-aware so that it can choose the right resolver code, or (2) Replace the OrcArchitecture classes with OrcABI classes. I.e. We'd just a rename OrcX86_64 -> Orc_X86_64_SysV (and rename I386 & AArch64 similarly) , then we add your code as
2013 Dec 03
0
[LLVMdev] Please update LDC references on LLVM website
Can you send a patch? On 2 December 2013 06:44, Kai Nacke <kai at redstar.de> wrote: > Hi! > > I like to submit some updates to the LLVM website regarding the LDC > compiler. All links are currently out-of-date. The following pages need > updates: > > On page http://www.llvm.org/Users.html, please replace the existing entry > "LLVM D Compiler" in section
2013 Dec 02
3
[LLVMdev] Please update LDC references on LLVM website
Hi! I like to submit some updates to the LLVM website regarding the LDC compiler. All links are currently out-of-date. The following pages need updates: On page http://www.llvm.org/Users.html, please replace the existing entry "LLVM D Compiler" in section "Open Source Projects" with: <tr> <td><a href="http://wiki.dlang.org/LDC/">
2015 Jan 11
3
[LLVMdev] [RFC] [PATCH] add tail call optimization to thumb1-only targets
...://lists.llvm.org/pipermail/llvm-dev/attachments/20150111/57000648/attachment.bin> -------------- next part -------------- Index: Thumb1FrameLowering.cpp =================================================================== --- Thumb1FrameLowering.cpp (Revision 225589) +++ Thumb1FrameLowering.cpp (Arbeitskopie) @@ -323,11 +323,18 @@ } void Thumb1FrameLowering::emitEpilogue(MachineFunction &MF, - MachineBasicBlock &MBB) const { + MachineBasicBlock &MBB) const { MachineBasicBlock::iterator MBBI = MBB.getLastNonDebugI...
2006 May 24
0
optim "CG" bug w/patch proposal (PR#8786)
...0,type=2)) >> >>>> $par 3834.021 -2718.958 >> >>>> $value -0.0009983175 # should be 2! >> >>>> >> >>>> Fix: >> >>>> --- optim.c (Revision 37878) >> >>>> +++ optim.c (Arbeitskopie) >> >>>> @@ -970,7 +970,8 @@ >> >>>> if (!accpoint) { >> >>>> steplength *= stepredn; >> >>>> if (trace) Rprintf("*"); >> >>>> - } >> >>>&gt...