Displaying 3 results from an estimated 3 matches for "misthinks".
Did you mean:
methinks
2019 Aug 24
2
How to dump options being used when running?
On 24/08/2019 14:00, Zalth via samba wrote:
> In case it isn't clear, this is not a question of how to read smb.conf.
>
Just do what is asked, post the smb.conf as on disk, seeing the
smb.conf? with ALL the defaults is NOT going to help!
Rowland
2019 Aug 24
2
How to dump options being used when running?
On 24/08/2019 16:22, Zalth via samba wrote:
> Hoping some can help me with this. Rowland misthinks it. I'm looking for a commandline way to extract the config variables that are actually being used in a running instance. For example if I run testparm, it claims to offer a dump of "service definitions" in the smb.conf. But it is not complete when compared to smb.conf. Moreover, I ca...
2011 Oct 15
2
[LLVMdev] Live code elimination problem in code generation
...----------
loop:
:
:
set P0 <- xxx ( P0: a physical register for a parameter of function F )
set P1 <- yyy ( P1: a physical register for a parameter of function F )
:
branch_cond B2, B3
B2:
mov v1, v2, v3
B3:
call F
:
:
----------
At first,
the dead code elimination stage misthinks P0 and P1 is not alive
since the live variable analysis (actually it seems as a live physical
register analysis)
in DCE stage is somewhat wrong (to my thinking).
Therefore, set Px statements are all eliminated.
Then I modified the DCE code to keep the live physical register information
in each MBB....