search for: 5f1

Displaying 6 results from an estimated 6 matches for "5f1".

Did you mean: 51
2015 Jul 09
2
[LLVMdev] How to use get the memory location of a function argument correctly?
Hi all, i hope to get the MemoryLocation for argument %1 in a CallInst like "call void @function(i32* %1)", and i found an interface "getForArgument()" which seems available for this. However, i don't know how to correcly fill the 3rd argument TargetLibraryInfo in my own code and can't find an example in google. Does anybody know how to do it? Or some other advice for
2015 Jun 07
2
[LLVMdev] Loop Unfolding in LLVM
Hello, I am looking for a loop unfolding procedure implemented in LLVM that helps to transform a while-loop to n-layer If-statements. The transformation should be on IR, although the example below is illustrated on the source level. original loop: * WHILE (condition) DO action ENDWHILE* Expected unfolded loop (2-layer): * IF (condition) THEN* * action* * IF
2005 Aug 24
1
dingotel - connect Asterisk to 2-way radio?
So has anybody got one of these? http://www.amazon.com/exec/obidos/ASIN/B0007LQQUK/qid%3D1106972010/sr%3D11-1/ref%3Dsr%5F11%5F1/102-1529886-6420131 I'm thinking that it should be possible to connect it directly to an Asterisk box and not use their software, as long as there was Linux support for the USB dongle. Maybe it just looks like a standard USB audio device? But there has to be an extra ring on the connect...
2008 Jan 02
1
Another Uploading Printer drivers problem.
...I think I have a different problem. In my case I have a Samsung CLP510 colour laser physically connected to a Centos 5.1 X86-64 Linux box with Samba 3.0251514 (3.0.25b-1.el5_1.4 <https://192.168.0.201:10000/software/edit_pack.cgi?search=samba&package=samba&version=3%2E0%2E25b%2D1%2Eel5%5F1%2E4>). The Printer is intended to be shared by windows boxes on the network. I have installed the printer as a "raw" printer - so that windows clients use their own drivers. In order to get rid of the "Access Denied" errors in the "Printers and Faxes" status - I...
2004 Mar 03
0
Samba-3 by Example book availability
...to your queries, it's on schedule to be available in retail outlets (your local technical bookstore, Barnes & Noble, Borders, Amazon) by the first week of April. Or, it can be pre-ordered now at Amazon: http://www.amazon.com/exec/obidos/ASIN/0131472216/qid%3D1077225188/sr%3D11-1 /ref%3Dsr%5F11%5F1/102-2225595-6404924 Given the level of interest, we're thinking of giving away a few copies-- as soon as we've sorted out how to determine the winners, we'll follow up with announcement. If anyone has a suggestion, please send them my way. Thanks! Jill Jill Harry Executive Ed...
2015 Jun 10
4
[LLVMdev] The use iterator not working...
Thanks Dan and Jon. I made an incorrect assumption that the "use" iterator was actually giving me the "user" when de-referencing it. Did it always have this behavior in previous LLVM versions? I've seen lots of examples of the "use" iterator being dereferenced and resulting Instruction pointer being treated as the "user"? Thanks, Zack On Tue, Jun 9,