Displaying 3 results from an estimated 3 matches for "itsay".
Did you mean:
itay
2012 Jun 23
1
pop3-throttle
...igrating to
IMAP, but that migration will take some time, and therefore I am looking
for alterantive ways to workaround the problem.
I found pop3-throttle-plugin.c, which seems a smart way to solve the
problem, unfortunately it comes with no documentation. I was able to
build it and load it, bu itsays nothing in the logs. Is there any
doc somewhere? Any advices on how to set it up?
--
Emmanuel Dreyfus
http://hcpnet.free.fr/pubz
manu at netbsd.org
2013 May 14
0
[LLVMdev] Implicit basic block labels?
...t; 1. Where is this documented, and why http://llvm.org/docs/LangRef.html
> doesn't have it? (I didn't re-read it completely on this occasion,
> but grepped for all occurrences of "label" - none was relevant).
>
>
The closest it gets to talking about it I think is that itsays "Unnamed
temporaries are numbered sequentially", although it says it in a context
where the implication is that this applies to the results of instructions,
with no mention of BB names.
> 2. Why label is not rendered explicitly? Putting instead comment like
> "; <label>...
2013 May 13
2
[LLVMdev] Implicit basic block labels?
Hello,
I only recently started to look at LLVM assembly generated by Clang,
and one of the first thing I saw was like:
define i32 @foo(i32 %a, i32 %b) nounwind {
%1 = tail call i32 @bar(i32 %a) nounwind
%2 = icmp eq i32 %1, 0
br i1 %2, label %5, label %3
; <label>:3 ; preds = %0
%4 = add nsw i32 %b, %a
br label %7
I wondered what ";