similar to: [LLVMdev] def use at O0

Displaying 20 results from an estimated 3000 matches similar to: "[LLVMdev] def use at O0"

2005 Oct 13
4
"Wbinfo -u" get user account sucessfully but "getent passwd" fails
Hi everybody, I got a problem here with my Samba ADS member server. It functions as a file server and works for a long time. A few weeks ago our Active Directory domain controller failed due to power outage. We fixed it and now an employee reports that he could not use the samba file server any more. I restarted samba service and did the following testing: 1) getent passwd <thisUser>
2015 Mar 17
1
NTLMv2 can't auth affter Win2003 update
On 17/03/15 10:13, Sense Zeng wrote: > And use ntlm_auth fail too: > > ntlm_auth --username=testuser > password: > NT_STATUS_LOGON_FAILURE: Logon failure (0xc000006d) > > > 2015-03-17 7:30 GMT+00:00 Sense Zeng <opaperjam at gmail.com>: > >> My AD server is Win2003. And my linux server is ubuntu. Samba version is >> 2:3.6.3-2ubuntu2.12 and
2011 Sep 23
3
[LLVMdev] statically link pass to clang
Hi all, A question about statically linking a pass to clang instead of dynamically loading it at runtime. I am stumped on this bug for a while. I inserted a pass under lib/Transforms/mypass directory, registered it with INITIALIZE_PASS and defined createMyPass in the pass. Also I added file mypass.h in include/llvm/Transforms/ to expose the accessor functions that expose my passes. Entries are
2005 Jan 16
2
[LLVMdev] getting all def-uses
Hi, I want to get all the d-u pairs exercised at run-time. I am doing two things for this. I am useing the d-u iterator to instrument all uses. I also want to get an address trace. What are the instructions I should insttrument. Is load and store sufficient. Also, how do I go abt doing this ? Thanks -Sriraman.
2016 Dec 02
2
How to add a new diagnostic error message in Clang 2.6?
Hi, everyone. I want to add a new diagnostic error message for Chinese in Clang 2.6 showed as follows. def err_expected_semi_declaration_chinese : Error< "您在该行声明之后是否少了个';'或者是中文输入法?">; So i append a new one in the end of file DiagnosticParseKinds.td, and then recompile it. However, there is a error occurs: llvm2.6/llvm/tools/clang/lib/Parse/ParseDecl.cpp:370: error:
2005 Mar 05
2
Can't fetch domain SID
Hi, I happened to delete /etc/samba/secrets.tdb. Now I can not get DOMAIN SID by run: net getlocalsid Any idea how to recover it? Do I need to reinstall the whole Samba suite? -- Regards, Steve Zeng Systems Administrator Mainframe Entertainment Inc T: (604) 628-1000 ext 5293
2005 Jan 17
0
[LLVMdev] getting all def-uses
On Sun, 16 Jan 2005, Sriraman Tallam wrote: > I want to get all the d-u pairs exercised at run-time. I am doing > two things for this. I am useing the d-u iterator to instrument all uses. > I also want to get an address trace. What are the instructions I should > insttrument. Is load and store sufficient. Also, how do I go abt doing > this ? Hi Sriraman, If you are looking for
2011 Oct 06
1
[LLVMdev] A potential bug
If int_guard_load returns a pointer based on the passed-in pointer, it captures it (at least according to the definition of "capture" which NoCapture uses). -Eli On Thu, Oct 6, 2011 at 2:26 PM, Zeng Bin <ezengbin at gmail.com> wrote: > It does not do anything. It is an abstract function which transforms a > pointer and returns another pointer of the same type. It does not
2005 Jan 17
1
[LLVMdev] getting all def-uses
Thanks Chris. Yes that was what I was looking for. -Sriraman. On Sun, 16 Jan 2005, Chris Lattner wrote: > On Sun, 16 Jan 2005, Sriraman Tallam wrote: > > > I want to get all the d-u pairs exercised at run-time. I am doing > > two things for this. I am useing the d-u iterator to instrument all uses. > > I also want to get an address trace. What are the instructions I
2010 Oct 20
1
[LLVMdev] MachineBasicBlock insertion and use/def list update
Hi all, I am still stumped on the same bug. Did anyone try to insert MachineBasicBlock into a MachineFunction? Any advice will be appreciated. Thanks a lot in advance. ~Bin ---------------------------------------------------------------------------------------------------------------------------- Thanks a lot Jeff. I changed the setNumber function call to
2005 Mar 10
7
Why need to add a machine account to /etc/passwd first with Samba+LDAP
Hi, I am using Samba 3.0.10 PDC with LDAP as password DB. Before we use smbpasswd as passwd DB and every time I need to add a machine account into /etc/passwd so that the mahcine can join the domain. My understanding for LDAP is, this step is not needed any more since we will put all machine account into "ou=Computers". But I am proved to be wrong. Is this the way Samba works? I
2011 Jan 19
0
[LLVMdev] Building 176.gcc
On 01/18/2011 06:38 PM, Bin Zeng wrote: > Hi folks, > > I have been stumped on a compilation problem when I tried to build > 176.gcc of SPEC CPU2000 with clang v 2.8 (trunk 427) on Linux and intel. > First, I tried to compile with 'clang -std=c89 *.c -o gcc.clang' since > the default C standard of Clang is c99 while that of gcc is c89. It > reported this error: >
2011 Oct 06
2
[LLVMdev] A potential bug
On Thu, Oct 6, 2011 at 2:20 PM, Eli Friedman <eli.friedman at gmail.com> wrote: > On Thu, Oct 6, 2011 at 2:12 PM, Zeng Bin <ezengbin at gmail.com> wrote: >> Hi all, >> >> There might be a bug in DeadStoreElimination.cpp. This pass eliminates >> stores backwards aggressively in an end BB. It does not check dependencies >> on stores in an end BB though.
2010 Jan 03
1
Interpreting coefficient in selection and outcome Heckman models in sampleSelection
Hi there Within sampleSelection, I'm trying to calculate the marginal effects for variables that are present in both the selection and outcome models. For example, age might have a positive effect on probability of selection, but then a negative effect on the outcome variable. i.e. Model<-selection(participation~age, frequency~age, ...) Documentation elsewhere describes one method for
2005 Feb 24
2
Question about Samba 3.0.10 + OpenLDAP 2.1.29
Hi, This may be a silly question. I've got OpenLDAP 2.1.29 up and running on FC2, I imported passwd, group and hosts from NIS to LDAP server and we can authenticate with LDAP instead of NIS. We also have a Samba PDC running on another Linux box (FC2), it use smbpasswd as passwd db. So I am going to replace it with LDAP passwd db. I tried to configure Samba to use LDAP. but it didn't
2011 Oct 06
0
[LLVMdev] A potential bug
It does not do anything. It is an abstract function which transforms a pointer and returns another pointer of the same type. It does not visit memory or capture the pointer parameter. On Thu, Oct 6, 2011 at 2:22 PM, Eli Friedman <eli.friedman at gmail.com> wrote: > On Thu, Oct 6, 2011 at 2:20 PM, Eli Friedman <eli.friedman at gmail.com> > wrote: > > On Thu, Oct 6, 2011 at
2004 Oct 04
2
call step inside a function
I am wondering why my function works fine in R1.7.1 and R1.8.1 but not in R1.9.0. I thought it's an environment related problem but I can't solve it. >data weta jd 1 1 4 2 2 13 3 2 13 4 6 4 5 1 3 6 1 7 7 2 10 8 3 10 9 1 8 10 1 8 11 3 6 12 1 9 13 1 5 14 1 1 15 3 13 16 1 2 17 2 2 18 7 11 19 1 3 20 5 4
2013 Mar 29
2
[Bug 62916] New: NVEnterTV fails on hybrid cards
https://bugs.freedesktop.org/show_bug.cgi?id=62916 Priority: medium Bug ID: 62916 Assignee: nouveau at lists.freedesktop.org Summary: NVEnterTV fails on hybrid cards QA Contact: xorg-team at lists.x.org Severity: critical Classification: Unclassified OS: Linux (All) Reporter: zeng.shixin at gmail.com
2008 Aug 26
1
bug in package chron (PR#12599)
Full_Name: Zeng, zhenxing Version: 2.7.1 (2008-06-23) OS: windows XP Submission from: (NULL) (158.182.1.30) Dear Author I have run into a trouble in using chron package The data frame: a date time_fut expiry_day bid ask trade_day 1 2004-09-01 09:45:00 2004-10 12860 12889 38 2 2004-09-01 09:45:01 2004-10 12885 12890 38 3 2004-09-01 09:45:04 2004-10 12883 12887
2013 Jun 26
0
[LLVMdev] Proposal: extended MDString syntax
On Jun 26, 2013, at 4:18 PM, Eric Christopher <echristo at gmail.com> wrote: > On Wed, Jun 26, 2013 at 3:59 PM, Nadav Rotem <nrotem at apple.com> wrote: >> >> On Jun 26, 2013, at 3:51 PM, Chandler Carruth <chandlerc at google.com> wrote: >> >> Can you suggest an alternative solution? Can you describe why you don't >> think metadata is the