search for: l57

Displaying 19 results from an estimated 19 matches for "l57".

Did you mean: 57
2017 Mar 22
2
arg_iterator missing inc/dec operators
...:Function *f; > foo(&*--f->arg_end()); > > ? > Correct, I mean exactly this. Though &* is not important in this case. This code doesn't work anymore, as arg_iterator is defined differently now: https://github.com/llvm-mirror/llvm/blob/master/include/llvm/IR/Function.h#L57 I get an error when I'm using pre-decrement operator: error: expression is not assignable --f->arg_end(); Dmitry. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20170322/3ffca78c/attachment.html...
2020 Jun 09
2
Implementing a VTable in LLVM
...e that compiles to it- https://github.com/mukul-rathi/bolt/blob/vtable/examples/vtable/foo.bolt <https://github.com/mukul-rathi/bolt/blob/vtable/examples/vtable/foo.bolt> I currently have code (https://github.com/mukul-rathi/bolt/blob/vtable/src/llvm-backend/llvm_ir_codegen/class_codegen.cc#L57:L77 <https://github.com/mukul-rathi/bolt/blob/vtable/src/llvm-backend/llvm_ir_codegen/class_codegen.cc#L57:L77>) that generates the following global Vtable for a class Foo: %_VtableFoo = type { void (%Foo*, i32)* } %Foo = type { %_VtableFoo*, %pthread_t*, i32, i32, i32, i32 } @_VtableFoo =...
2008 Mar 19
2
ActiveRecord bug? ActiveRecord::ConnectionAdapters::Column.type_cast for float columns
...with the no-doubt cascade of failing tests from changing the behaviour). If it''s expected behaviour I''ll just patch my version of rails for this app. [1] http://dev.rubyonrails.org/browser/trunk/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb#L57 [2] http://dev.rubyonrails.org/browser/trunk/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb#L75 [3] http://dev.rubyonrails.org/changeset/928 [4] http://dev.rubyonrails.org/ticket/820 --~--~---------~--~----~------------~-------~--~----~ You received this message...
2020 Nov 17
10
wasteful cmake defaults
...g surprising in the configure log: > -- No build type selected, default to Debug It appears that llvm's configuration forces Debug builds if the user does not specify the build type. https://github.com/llvm/llvm-project/blob/9218ff50f93085d0a16a974db28ca8f14bc66f64/llvm/CMakeLists.txt#L57-L60 I've just done a build of llvm and clang 10 in debug mode for X86 and ARM targets and it weighs in at a whopping 75GiB. I feel that forcing Debug builds in the absence of an option to be a wasteful default. It is a valid and useful thing to call cmake without specifying a build type; absen...
2020 Nov 18
1
wasteful cmake defaults
...No build type selected, default to Debug >> >> It appears that llvm's configuration forces Debug builds if the user >> does not specify the build type. >> >> https://github.com/llvm/llvm-project/blob/9218ff50f93085d0a16a974db28ca8f14bc66f64/llvm/CMakeLists.txt#L57-L60 >> >> I've just done a build of llvm and clang 10 in debug mode for X86 and >> ARM targets and it weighs in at a whopping 75GiB. I feel that forcing >> Debug builds in the absence of an option to be a wasteful default. It is >> a valid and useful thing to call...
2013 Oct 16
0
UPS Product additions to NUT HCL list for compatible Tripp Lite UPS systems
...incorrectly scaled voltages). We are open to suggestions on how to improve that heuristic, especially if Tripp Lite has allocated separate ranges of product IDs for UPS and non-UPS hardware. Here's the code in question: https://github.com/networkupstools/nut/blob/master/drivers/tripplite-hid.c#L57 In that file, the product IDs are matched individually, and there is a tripplite_claim() function at the bottom of the file which tries to offer advice for other IDs. Regards, -- Charles Lepple clepple at gmail
2001 Mar 07
1
Minor bug in maketitle.pl (with bug correction) (PR#864)
...$len > $lc - 3) { L48: $S = $old; L49: $old = ""; ### Forgot to this line. L50: for ($j = 1; $j < $lc; $j++) { L51: $old = $old . ' '; L52: } L53: } L54: else { L55: for ($j = 1; $j < $lc - $len; $j++) { L56: $old = $old . ' '; L57: } L58: } -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-devel-...
2017 Mar 22
3
arg_iterator missing inc/dec operators
Reid, After your recent redefinition of arg_iterator, it's missing increment/decrement operators (which people typically expect to be defined for iterators). So some external code relying on this is broken. If it's not intentional, would be nice to have it fixed. Specific code that I is broken looks like this: llvm::Function f; foo(--f->arg_end()); // passing the last argument to the
2020 Nov 17
0
wasteful cmake defaults
...: > >> -- No build type selected, default to Debug > > It appears that llvm's configuration forces Debug builds if the user > does not specify the build type. > > https://github.com/llvm/llvm-project/blob/9218ff50f93085d0a16a974db28ca8f14bc66f64/llvm/CMakeLists.txt#L57-L60 > > I've just done a build of llvm and clang 10 in debug mode for X86 and > ARM targets and it weighs in at a whopping 75GiB. I feel that forcing > Debug builds in the absence of an option to be a wasteful default. It is > a valid and useful thing to call cmake without speci...
2020 Nov 18
0
wasteful cmake defaults
...: > > > -- No build type selected, default to Debug > > It appears that llvm's configuration forces Debug builds if the user > does not specify the build type. > > > https://github.com/llvm/llvm-project/blob/9218ff50f93085d0a16a974db28ca8f14bc66f64/llvm/CMakeLists.txt#L57-L60 > > I've just done a build of llvm and clang 10 in debug mode for X86 and > ARM targets and it weighs in at a whopping 75GiB. I feel that forcing > Debug builds in the absence of an option to be a wasteful default. It is > a valid and useful thing to call cmake without specif...
2020 Nov 17
0
wasteful cmake defaults
...g: > > > -- No build type selected, default to Debug > > It appears that llvm's configuration forces Debug builds if the user > does not specify the build type. > > https://github.com/llvm/llvm-project/blob/9218ff50f93085d0a16a974db28ca8f14bc66f64/llvm/CMakeLists.txt#L57-L60 > > I've just done a build of llvm and clang 10 in debug mode for X86 and > ARM targets and it weighs in at a whopping 75GiB. I feel that forcing > Debug builds in the absence of an option to be a wasteful default. It is > a valid and useful thing to call cmake without specif...
2020 Nov 18
0
wasteful cmake defaults
...-dev wrote: >> -- No build type selected, default to Debug > It appears that llvm's configuration forces Debug builds if the user > does not specify the build type. > > https://github.com/llvm/llvm-project/blob/9218ff50f93085d0a16a974db28ca8f14bc66f64/llvm/CMakeLists.txt#L57-L60 > > I've just done a build of llvm and clang 10 in debug mode for X86 and > ARM targets and it weighs in at a whopping 75GiB. I feel that forcing > Debug builds in the absence of an option to be a wasteful default. It is > a valid and useful thing to call cmake without speci...
2013 Oct 15
4
UPS Product additions to NUT HCL list for compatible Tripp Lite UPS systems
Hello, My name is Eric Cobb and I am a Product Specialist with Tripp Lite. We have tested your latest NUT distributions against our HID USB compatible UPS systems and would like to know what is needed and/or who is needed to contact in order to updated the listing of compatible Tripp Lite UPS systems in your HCL list? Best Regards, Eric K. Cobb Product Management Specialist [Tripp Lite] 1111
2023 Mar 24
1
[PATCH 1/1] nbd/server: push pending frames after sending reply
...ob/master/server/crypto.c#L396 while libnbd uses MSG_MORE a bit more directly for the same purpose for plaintext, but isn't (yet) doing TLS corking: https://gitlab.com/nbdkit/libnbd/-/blob/master/generator/states-issue-command.c#L53 https://gitlab.com/nbdkit/libnbd/-/blob/master/lib/internal.h#L57 I would love to see a future patch to qio_channel code to support MSG_MORE in the same way as nbdkit is using its SEND_MORE flag, as the caller often has more info on whether it is sending a short prefix or is done with a conceptual message and ready to uncork, and where the use of a flag can be m...
2012 Jan 17
4
Find all association methods
Hi all, I want to get all association methods in one single model.... Any default method is provided by Active Record ??? i am using ruby 1.9.3 and rails 3.1.3 Please reply me .... Thanks, kingston.s -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to
2020 Nov 18
0
wasteful cmake defaults
...No build type selected, default to Debug >> >> It appears that llvm's configuration forces Debug builds if the user >> does not specify the build type. >> >> https://github.com/llvm/llvm-project/blob/9218ff50f93085d0a16a974db28ca8f14bc66f64/llvm/CMakeLists.txt#L57-L60 >> >> I've just done a build of llvm and clang 10 in debug mode for X86 and >> ARM targets and it weighs in at a whopping 75GiB. I feel that forcing >> Debug builds in the absence of an option to be a wasteful default. It is >> a valid and useful thing to call...
2013 Oct 30
2
UPS Product additions to NUT HCL list for compatible Tripp Lite UPS systems
...incorrectly scaled voltages). We are open to suggestions on how to improve that heuristic, especially if Tripp Lite has allocated separate ranges of product IDs for UPS and non-UPS hardware. Here's the code in question: https://github.com/networkupstools/nut/blob/master/drivers/tripplite-hid.c#L57 In that file, the product IDs are matched individually, and there is a tripplite_claim() function at the bottom of the file which tries to offer advice for other IDs. Regards, -- Charles Lepple clepple at gmail ________________________________ This message is for the addressee's use onl...
2017 Mar 14
3
llvm-stress crash
...ent <4 x i16> zeroinitializer, i16 -1, i32 1 %B54 = or <2 x i16> %Shuff, zeroinitializer %Sl55 = select i1 %Sl42, i16 %Sl22, i16 27357 %Cmp56 = icmp uge i1 %Sl42, true br i1 %Cmp56, label %CF259, label %CF268 CF268: ; preds = %CF259 %L57 = load i8, i8* %0 store i64 %L5, i64* %Sl %E58 = extractelement <4 x i16> %Shuff14, i32 1 %Shuff59 = shufflevector <1 x i32> %Shuff33, <1 x i32> %Shuff33, <1 x i32> zeroinitializer %I60 = insertelement <2 x i1> %Shuff20, i1 true, i32 0 %B61 = frem double 0x5A...
2009 Jul 23
1
[PATCH server] changes required for fedora rawhide inclusion.
...t; zR|l_V4!!LTwGbV*5*o;M{InXZKr9qw4;!n`=ZIw){D}Yba7KAX!hJ>}Fv09wf<^1+ z>#ZxUq2H2~v$?;;^CJ+42p)fS9e?&by|a0G{!9zZt)blmM;l<;!mI+IT)~hh){jm^ z$Dbw5lzivG?%Ow<oVpB<&UkP|_olVd_vP0;=yz8GtFP{BydDn0#!dEUwcdW3qRbn9 zEPCF-Y}J+!@~N)mcl<sDpzO#H!GIjAX_WHQfb^4D49f*2z7C5JjS7IA%W^&p3wl57 zFqOBT?|WXNba at x+3S^SWa1MM?6yjuqa{NYO$D165fE9ja4T(Fw8l%dgI+<h7UAU9O ze)aKson^S^cw!;5uw!8dR4|Z_{$c2T3Z5&#j4CaWM((eWIaUs|DF1oZ<A486tgm(a zu~W^9v!r*3?<W%k9nPH!Ap)dB3b<r~wB}c`DM$^vdSG;L;|2|%4gj|j9vES&$Eo^_ zmeI&KVtIMS+E<v#*;mYJG#myXKdKouV=kin5KD*pe4LwbAyx77WkEL)T*W+R|G?+g z...