search for: raout

Displaying 5 results from an estimated 5 matches for "raout".

Did you mean: aout
2013 Oct 07
0
rails_admin problem in raoutes, parallel login area in devise
hello friends, i am using rails_admin as webapp admin interface. it create a User model by default using Devise gem. after that i am creating another authorization area member. now /admin route change to /member/sign_in from user/sign_in. any body have idea how to create a parallel login area in devise with rails_admin. /admin => /user/sign_in (default) after * rails g devise member*. it
2015 May 04
2
[LLVMdev] Naryreassociate vs reassociate
...ate(i32 %a, i32 %b, i32 %c) { > %1 = add i32 %c, %a > call void @foo(i32 %1) > %2 = add i32 %b, %a > %3 = add i32 %2, %c > call void @foo(i32 %3) > ret void > } > > > This is because for the first expression: > > RAIn: add i32 [ %a, #3] [ %c, #5] > RAOut: add i32 [ %c, #5] [ %a, #3] > > > and > for the second: > RAIn: add i32 [ %a, #3] [ %b, #4] [ %c, #5] > RAOut: add i32 [ %c, #5] [ %b, #4] [ %a, #3] > > > This makes it transform the first into add c, a > and the second into > %1 = add b, a > add c, %1 > >...
2015 May 05
1
[LLVMdev] Naryreassociate vs reassociate
...; > call void @foo(i32 %1) > > %2 = add i32 %b, %a > > %3 = add i32 %2, %c > > call void @foo(i32 %3) > > ret void > > } > > > > > > This is because for the first expression: > > > > RAIn: add i32 [ %a, #3] [ %c, #5] > > RAOut: add i32 [ %c, #5] [ %a, #3] > > > > > > and > > for the second: > > RAIn: add i32 [ %a, #3] [ %b, #4] [ %c, #5] > > RAOut: add i32 [ %c, #5] [ %b, #4] [ %a, #3] > > > > > > This makes it transform the first into add c, a > > and the secon...
2015 May 05
1
[LLVMdev] Naryreassociate vs reassociate
...add i32 %2, %c > >> > call void @foo(i32 %3) > >> > ret void > >> > } > >> > > >> > > >> > This is because for the first expression: > >> > > >> > RAIn: add i32 [ %a, #3] [ %c, #5] > >> > RAOut: add i32 [ %c, #5] [ %a, #3] > >> > > >> > > >> > and > >> > for the second: > >> > RAIn: add i32 [ %a, #3] [ %b, #4] [ %c, #5] > >> > RAOut: add i32 [ %c, #5] [ %b, #4] [ %a, #3] > >> > > >> > > >...
2015 May 05
1
[LLVMdev] Naryreassociate vs reassociate
...; %2 = add i32 %b, %a >> > %3 = add i32 %2, %c >> > call void @foo(i32 %3) >> > ret void >> > } >> > >> > >> > This is because for the first expression: >> > >> > RAIn: add i32 [ %a, #3] [ %c, #5] >> > RAOut: add i32 [ %c, #5] [ %a, #3] >> > >> > >> > and >> > for the second: >> > RAIn: add i32 [ %a, #3] [ %b, #4] [ %c, #5] >> > RAOut: add i32 [ %c, #5] [ %b, #4] [ %a, #3] >> > >> > >> > This makes it transform the first i...