search for: rizzolo

Displaying 8 results from an estimated 8 matches for "rizzolo".

2003 Jul 09
0
[LLVMdev] writing a pass
On Wed, Jul 09, 2003 at 10:47:14AM -0500, Nicholas Rizzolo wrote: > I'm having a problem with opt. According to the "Writing an LLVM Pass" > tutorial, all I have to do to get the Hello pass to work is: > > cd ${LLVM_HOME}/llvm/lib/Transforms/Hello > gmake > cd $MYTEST > opt -load ${OBJ_ROOT}/lib/Release/libhello...
2003 Jul 14
1
[LLVMdev] documentation bug
Hi, Just to let you know, in the html of http://llvm.cs.uiuc.edu/docs/WritingAnLLVMPass.html there are two occurrences of the following: </pre</p> which I'm guessing should be </pre><p> instead. This does affect the way the document looks in Netscape. - Nick
2003 Jul 25
0
[LLVMdev] RE: while i have your attention...
On Fri, 25 Jul 2003, Nicholas Rizzolo wrote: > i want to link several source files together into one bytecode file > without gcc performing any optimizations. first step: > > llvmgcc -c -S code.c > > which produces a code.s file. next i tried: > > as code.s > > but that produced a .bc file instead of...
2003 Jul 09
2
[LLVMdev] writing a pass
Hi, I'm having a problem with opt. According to the "Writing an LLVM Pass" tutorial, all I have to do to get the Hello pass to work is: cd ${LLVM_HOME}/llvm/lib/Transforms/Hello gmake cd $MYTEST opt -load ${OBJ_ROOT}/lib/Release/libhello.so -hello < something.bc > /dev/null First (just as a friendly reminder), someone may want to go back and double check a bunch of
2014 Oct 02
15
[Bug 2283] New: option to execute command without shell
https://bugzilla.mindrot.org/show_bug.cgi?id=2283 Bug ID: 2283 Summary: option to execute command without shell Product: Portable OpenSSH Version: 6.6p1 Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 Component: sshd Assignee: unassigned-bugs at
2003 Jul 22
1
[LLVMdev] this code won't assemble on sparc
Hi, I'm not sure what I'm doing wrong here. With the single source file attached to this email, I tried the following commands: llvmgcc -o timeLLVMfft timeLLVMfft.c -lm llc -o timeLLVMfft.s timeLLVMfft.bc /opt/SUNWspro/bin/cc -xarch=v9 -o timeLLVMfft.sparc timeLLVMfft.s I got the errors at the bottom of this email in response to the last command. On the other hand, gcc v2.95.3 had
2003 Jul 25
1
[LLVMdev] i think this is a bug
Hi, The attached code produces errors (as it should) with the command llvmgcc -c -S timeLLVMfft.c but it also creates output in the file timeLLVMfft.s. Maybe this is the intended behavior for llvmgcc, but it seems unconventional to me... - Nick -------------- next part -------------- A non-text attachment was scrubbed... Name: timeLLVMfft.c.tgz Type: application/octet-stream Size: 829
2003 Jul 09
2
[LLVMdev] writing a pass
On Wed, 9 Jul 2003, Misha Brukman wrote: > > Also, I don't have a Debug subdirectory like the tutorial said I would - I > > have Release instead. > > 1. What version of LLVM are you using (i.e., when did you get a tarball, > or if you are using anonymous CVS, are you up to date)? I use CVS and I updated a couple days ago. > 3. If you are using a version of LLVM