search for: l138

Displaying 4 results from an estimated 4 matches for "l138".

Did you mean: 138
2009 May 04
2
data alignment issue on ARM
...yone familiar with data alignment issues on ARM give me some advice about this bug?: https://bugzilla.mozilla.org/show_bug.cgi?id=483912 The relevant code is in liboggz HEAD at: http://git.xiph.org/?p=liboggz.git;a=blob;f=src/liboggz/oggz_auto.c;h=ebb825c348298dc352a54d6925ce74ed707bbc3a;hb=HEAD#l138 cheers, Conrad.
2018 Aug 08
2
Passing arguments to var args function
...tom function to analyze the operands when a function has var args, however, the information whether the out val is fixed or not is not passed into the analyze function, the code I'm talking about can be seen here: https://github.com/llvm-mirror/llvm/blob/master/lib/CodeGen/CallingConvLower.cpp#L138 In line 144 the Fn is called, the Outs[i] contains the information required for such thing because it contains the IsFixed flag. Did anyone else come by such requirement? is there any other way anyone could recommend handling such requirement? Thanks in advance, Liad. -------------- next part ---...
2001 Mar 06
0
Samba over SSH and pam_smb
...ll of my machines are RedHat Linux. Some are 6.2, others are 7.0. I have setup SSH to work without passwords. I am trying all of this from a bash shell for now. I will automate it when the time comes. I open the SSH tunnel to a linux box on my LAN: [root@remote /]# ssh -L137:nt4.domain.com:137 -L138:nt4.domain.com:138 -L139:nt4.domain.com:1 39 linux.domain.com Now, if I execute: [root@remote /]# smbclient -U user -L NT4 -I 127.0.0.1 WHERE: NT4 is the Netbios name of the NT domain controller I get: SSL: Error error setting CA cert locations: error:00000000::lib(0) :func(0) :reason(0) tryin...
2017 Jan 04
5
RFC: Reconsidering adding gmock to LLVM's unittest utilities
...we want to carefully *permute* the behavior of very specific runs of individual passes. A simple example of this can be seen here where we have somewhat magical state in a pass to flip-flop its behavior: https://github.com/llvm-project/llvm-project/blob/master/llvm/unittests/IR/PassManagerTest.cpp#L138-L139 And it gets more complicated if you want statefulness like triggering on the *3rd* run of the pass. But this is exactly the kinds of scenarios that I needed to write tests for in order to get the code to be correct. I have consistently found and been able to fix bugs throughout the pass mana...