search for: cond_a

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

Did you mean: cond_t
2006 Oct 03
1
line too long in editor... (textmate)
my where :condition string line is too long in my editor, (Textmate...) if I do a LR, I got a \n in my string, how can i get it displayed in multilines without this garbage in the string : here is the kind of string I am manipulating cond_a.append ["(bookings.start_at == ? OR bookings.end_at == ? ) OR (bookings.start_at <= ? AND bookings.end_at >= ? )", @selected_booking_date, @selected_booking_date, @selected_booking_date, @selected_booking_date] thansk fyh kad -- Posted via http://www.ruby-forum.com/. --~--~-...
2018 Jul 10
2
Giving up using implicit control flow in guards
...t"() ] <some operations> The following code will also be correct, no matter what %other_cond is: %wider_cond = and i1 %cond, %other_cond call void (i1, ...) @llvm.experimental.guard(i1 %wider_cond) [ "deopt"() ] <do some useful stuff> More formally, if %cond_a implies %cond_b, it is always valid to replace guard(%cond_b) with guard(%cond_a). We use this fact to make some optimizations, for example Loop Predication and Guard Widening passes. Given this semantics, all optimizations may assume that at every point dominated by a guard its condition is true,...
2018 Jul 13
2
Giving up using implicit control flow in guards
...also be correct, no matter what %other_cond is: > > > > %wider_cond = and i1 %cond, %other_cond > > call void (i1, ...) @llvm.experimental.guard(i1 %wider_cond) [ > "deopt"() ] > > <do some useful stuff> > > > > More formally, if %cond_a implies %cond_b, it is always valid to replace guard(%cond_b) with guard(%cond_a). We use this fact to make some optimizations, for example Loop Predication and Guard Widening passes. > > > > Given this semantics, all optimizations may assume that at every point dominated by a guard its...