search for: blez

Displaying 3 results from an estimated 3 matches for "blez".

Did you mean: blew
2006 Jul 07
2
Problem with GetText 1.6.0 - undefined method ''N_''
I''m just upgraded GetText from 1.4.0 to 1.6.0, and all my tests got broken. I got this error: ruby/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/base.rb:1129:in `method_missing'': undefined method `N_'' for User:Class (NoMethodError) etc My model user.rb has this line: validates_format_of :login, :with => /^[a-zA-Z0-9_]+$/, :message =>
2009 Jun 04
1
[LLVMdev] endian issue of llvm-gcc and llvm backend
...g is the asm code which are mips like: (NOTE: $rx indicates a 32 bits register x, #x indicates constant, subri $r3, $r2, #32 means r3 = 32 - r2, r0, r1 contain the first 64 bits parameter which contains %u, r2 contains the second parameter %b) beqz $r2,83f6 <__ashldi3+0x2a> subri $r3,$r2,#32 blez $r3,83fa <__ashldi3+0x2e> sll $r1,$r1,$r2 srl $r3,$r0,$r3 or $r3,$r3,$r1 sll $r1,$r0,$r2 movi $r2,#0 mov $r0,$r1 or $r1,$r3,$r2 ret $lp ret $lp subri $r3,$r3,#0 movi $r1,#0 sll $r3,$r0,$r3 The above asm code is tested ok in little endian, and not ok in big endian, because it does not get par...
2009 Jun 05
0
[LLVMdev] endian issue of llvm-gcc and llvm backend
...> (NOTE: $rx indicates a 32 bits register x, #x indicates constant, subri > $r3, $r2, #32 means r3 = 32 - r2, > r0, r1 contain the first 64 bits parameter which contains %u, r2 contains > the second parameter %b) > > beqz $r2,83f6 <__ashldi3+0x2a> > subri $r3,$r2,#32 > blez $r3,83fa <__ashldi3+0x2e> > sll $r1,$r1,$r2 > srl $r3,$r0,$r3 > or $r3,$r3,$r1 > sll $r1,$r0,$r2 > movi $r2,#0 > mov $r0,$r1 > or $r1,$r3,$r2 > ret $lp > ret $lp > subri $r3,$r3,#0 > movi $r1,#0 > sll $r3,$r0,$r3 > > The above asm code is tested ok in...