search for: isambart

Displaying 2 results from an estimated 2 matches for "isambart".

2008 Sep 15
1
Ruby-GetText-Package-1.93.0
...port BOM) - Work with xx(double x) library and the library which uses xx library such as rcov. - Fixed expire_fragment with rails < 2.1. (NOTE) * Rails-1.2.x has not been supported. * Rails-2.2(Edge) has not been supported yet. Thanks to ------- Translators: Vincent Isambart, Erkki Eilonen, Sava Chankov. Bug reports, suggestions and patches: Vladimir Dobriakov, Tatsuki Sugiura, César Duque Calle, Rémy-Christophe Schermesser, Donald Piret. Website ------- http://rubyforge.org/projects/gettext/ * Download http://rubyforge.org/frs/?group_id=855&release_...
2011 May 18
1
[LLVMdev] Overflows and optimizations
Hi, We have a problem concerning LLVM optimizations and overflows in MacRuby. I reduced that to the following (architecture x86-64): $ cat e.c #include <stdio.h> long foo(void); int main() { const long a = foo(); const long b = foo(); const long res = a * b; fprintf(stderr, "0x%lx 0x%lx 0x%lx 0x%lx\n", res, a, b, res / a); return 0; } $ cat e2.c long