Displaying 4 results from an estimated 4 matches for "some_cond".
Did you mean:
some_code
2006 Mar 14
8
The RoR equivalent of out.write() in JSP?
All,
In JSP, I can output strings in the Web page by either
<%= foo %> //foo is a string or returns a string
or
<% out.write("test") %> //write directly to the output stream.
What is the method of "writing to the output stream" in RoR? Basically,
what is the equivalent of out.write()?
I have an if then statement that I want to put around a call to
h
2010 Apr 17
2
[LLVMdev] SCEV expression for ICmpInst
...V for conditions will be very simple.
As there are already some functions such as "isKnownNonZero" in
ScalarEvolution, so we can compute these condition easily.
With the SCEV for conditions, we may write more meaningful code:
SCEVEQCond *S = SE.getCondition(some_icmp_instruction);
if (some_cond.isAlwaysTrue(SE))
... do some thing ...
else
... do some others thing ...
Dose this make sense? or i just make things unnecessarily complex?
any comment is appreciated.
--best regards
ether
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm....
2010 Apr 17
1
[LLVMdev] SCEV expression for ICmpInst
...gt; As there are already some functions such as "isKnownNonZero" in
> ScalarEvolution, so we can compute these condition easily.
>
> With the SCEV for conditions, we may write more meaningful code:
>
> SCEVEQCond *S = SE.getCondition(some_icmp_instruction);
>
> if (some_cond.isAlwaysTrue(SE))
> ... do some thing ...
> else
> ... do some others thing ...
>
> Dose this make sense? or i just make things unnecessarily complex?
>
> any comment is appreciated.
>
> --best regards
> ether
2017 Jul 17
3
A bug related with undef value when bootstrap MemorySSA.cpp
Hi,
On Mon, Jul 17, 2017 at 1:56 PM, Daniel Berlin via llvm-dev
<llvm-dev at lists.llvm.org> wrote:
>
>
> On Mon, Jul 17, 2017 at 1:53 PM, Wei Mi <wmi at google.com> wrote:
>>
>> It seems MemorySSA.cpp is the only real code where we found the
>> problem happening.
>
>
> This is doubtful, ¸FWIW :)
>
>>
>> Is it possible to change the