similar to: [LLVMdev] Error with llc after using llvm-g++ WIN32

Displaying 20 results from an estimated 1000 matches similar to: "[LLVMdev] Error with llc after using llvm-g++ WIN32"

2006 May 25
3
[LLVMdev] Error with llc after using llvm-g++ WIN32
Hi Anton, Is the patch going to be uploaded to the CVS source? Ashwin On 5/24/06, Evan Cheng <evan.cheng at apple.com> wrote: > > > On May 24, 2006, at 5:03 AM, Anton Korobeynikov wrote: > > > Hello, Ashwin. > > > > You wrote Wednesday, May 24, 2006, 11:25:11 AM: > > > > AC> "Pass::getClassPassInfo<PassClass>() "Pass class
2006 May 26
2
[LLVMdev] Error with llc after using llvm-g++ WIN32
Hi Evan, I updated cvs and recompilled llvm. Still getting some unrecognized commas in the compilation of the assembly file after using llc. I guess this is still future work... Ashwin On 5/25/06, Evan Cheng <evan.cheng at apple.com> wrote: > > The patch is now in. Sorry about the delay! > > Evan > > On May 25, 2006, at 10:20 AM, Ashwin Chandra wrote: > > Hi
2006 May 24
0
[LLVMdev] Error with llc after using llvm-g++ WIN32
On May 24, 2006, at 5:03 AM, Anton Korobeynikov wrote: > Hello, Ashwin. > > You wrote Wednesday, May 24, 2006, 11:25:11 AM: > > AC> "Pass::getClassPassInfo<PassClass>() "Pass class not > AC> registered!"" failed: file > AC> "/cygdrive/c/llvm/llvm/include/llvm/PassAnalysisSupport.h", > line 76 > AC> Aborted > Same
2006 May 25
0
[LLVMdev] Error with llc after using llvm-g++ WIN32
The patch is now in. Sorry about the delay! Evan On May 25, 2006, at 10:20 AM, Ashwin Chandra wrote: > Hi Anton, > Is the patch going to be uploaded to the CVS source? > > Ashwin > > > On 5/24/06, Evan Cheng <evan.cheng at apple.com> wrote: > > On May 24, 2006, at 5:03 AM, Anton Korobeynikov wrote: > > > Hello, Ashwin. > > > > You wrote
2006 May 26
0
[LLVMdev] Error with llc after using llvm-g++ WIN32
Hi Evan, Actually the unrecognized commas disappeared with the patch. What remains is a call to ".local" which doesn't exist in x86 or at least is not compilable by g++. Ashwin On 5/25/06, Ashwin Chandra <ashwin.chandra1 at gmail.com> wrote: > > Hi Evan, > I updated cvs and recompilled llvm. Still getting some unrecognized commas > in the compilation of the
2006 Jun 01
2
[LLVMdev] Status on llvm-g++ -> llc -> C backend
Does anyone have a patch or fix for the failure: *assertion "Pass::getClassPassInfo<PassClass>() && "Pass class not registered!"" failed: file "/cygdrive/c/llvm/llvm/include/llvm/PassAnalysisSupport.h", line 76 * -Ash -------------- next part -------------- An HTML attachment was scrubbed... URL:
2006 Jun 02
0
[LLVMdev] Status on llvm-g++ -> llc -> C backend
On Thu, 1 Jun 2006, Ashwin Chandra wrote: > Does anyone have a patch or fix for the failure: > *assertion "Pass::getClassPassInfo<PassClass>() && "Pass class not > registered!"" failed: file > "/cygdrive/c/llvm/llvm/include/llvm/PassAnalysisSupport.h", line 76 I don't see that failure. We'll need more info to reproduce the issue.
2006 May 24
0
[LLVMdev] Error with llc after using llvm-g++ WIN32
Hi All, I'm having an issue with llc. I just updated cvs with latest llvm and llvm-gcc frontend code and compiled and made the binaries. I took a small sample C++ file and compiled it into bytecode with "llvm-g++ -c sample.cpp". Then after using "llc -march=C sample.cpp.bc", I get the following error: llc -march=c KEYFNT.CPP.bc -f assertion
2019 Apr 02
2
How can I use llvm::LoopInfo in the runOnModule method?
Hi all, I tried to have a LoopInfo object in a function pass, and add addRequired in getAnalysisUsage, and then use getAnalysis in runOnFunction(). It worked OK. Now I want to have a module pass to traverse the functions, and similarly, I want to have to loop information of the functions. When I did the above in runOnModule, and build the module pass, the following error popped out, and the
2015 Jun 08
2
[LLVMdev] Use Callgraph
Hi All, I tried to use CallGraph in llvm by adding "AU.addRequired<CallGraph>();" in getAnalysisUsage function. But it reports an error: include/llvm/PassAnalysisSupport.h:56:39: error: ‘ID’ is not a member of ‘llvm::CallGraph’ return addRequiredID(PassClass::ID); How to use it correctly? Thanks, Haopeng
2019 Mar 24
3
call an existing IPO pass
Hi, I found an existing pass "CalledValuePropagation" that can solve the problem I raised a few days ago regarding the "callees" metadata ( https://groups.google.com/forum/#!topic/llvm-dev/yjtZVMH_aC4). Now I have difficulty in calling this pass in my own pass. In my own pass, I called "getAnalysis<CalledValuePropagationPass>()" and in the
2019 Apr 03
3
How can I use llvm::LoopInfo in the runOnModule method?
Interesting that we're getting a relative flood of these recently. See here: http://lists.llvm.org/pipermail/llvm-dev/2019-March/131346.html I don't think one can reliably get a Function analysis pass from within a ModulePass using the legacy pass manager. You have to manually construct the pass yourself. -David Jonathan Smith via llvm-dev <llvm-dev at
2006 Jun 02
1
[LLVMdev] Status on llvm-g++ -> llc -> C backend
Thanks Anton and Chris, it works. On a side note is there a way to have llc preserve function names upon output to C so that external CPP files that link this file in will be able to find the correct functions. And how about name mangling? I assume this is something not taken care of by llc or at least from llvm-g++ to bytecode. Ashwin On 6/2/06, Chris Lattner <sabre at nondot.org> wrote:
2006 Jun 02
0
[LLVMdev] Status on llvm-g++ -> llc -> C backend
On Fri, 2 Jun 2006, Anton Korobeynikov wrote: > Hello, Chris. > You wrote Friday, June 2, 2006, 9:27:25 PM: > CL> I don't see that failure. We'll need more info to reproduce the issue. > Got fixed by adding the folowing line in ther early beginning of > LowerAllocations.cpp file: > > static IncludeFile CUFENP((void*)createUnifyFunctionExitNodesPass); I committed
2006 Jun 02
2
[LLVMdev] Status on llvm-g++ -> llc -> C backend
Hello, Chris. You wrote Friday, June 2, 2006, 9:27:25 PM: CL> I don't see that failure. We'll need more info to reproduce the issue. Got fixed by adding the folowing line in ther early beginning of LowerAllocations.cpp file: static IncludeFile CUFENP((void*)createUnifyFunctionExitNodesPass); -- With best regards, Anton mailto:asl at math.spbu.ru Friday,
2013 Jun 02
3
mp3 source
El dom, 02-06-2013 a las 09:59 +0530, Ashwin Kumar escribi?: > thank you Luis, > > > i need to send mp3 to icecast2 from ices live input. > > > > please guide me Ashwin, opens a terminal and runs sudo apt-get install ices2 After this we will continue by private mail. > > With Best > -Ashwin. > +91-9959166266 > > > > On Sun, Jun 2, 2013 at
2013 Jul 11
2
listner reports
i am trying to see listener count and prepare report but it would be nice if there is some default log for generating listener graph. thanks for thoughts. With Best -Ashwin. +91-9959166266 On Thu, Jul 11, 2013 at 3:22 PM, Yahav Shasha <yahav.shasha at gmail.com>wrote: > Better alternative to parsing the log files would be using the url auth > mechanism and "listener_add"
2015 May 31
2
How to use TRUNK only if IAX fails?
Hi Matt, I was a bit concerned on the delay if there might be any when my iax link is down? It would be two dial steps right when my iax link is down. But I?m more than happy to try. Many Thanks, Ashwin. From: asterisk-users-bounces at lists.digium.com [mailto:asterisk-users-bounces at lists.digium.com] On Behalf Of Matt Riddell (lists) Sent: 30 May 2015 16:55 To: Asterisk Users Mailing List -
2013 Jun 01
2
mp3 source
El s?b, 01-06-2013 a las 15:18 +0200, Xabier Oneca -- xOneca escribi?: > We use butt (butt.sf.net) in Windows, but it's also available for > Linux. Don't know if there are pre-built packages for Ubuntu... > > 2013/6/1 Ashwin Kumar <aswin.1231 at gmail.com>: > > hi, > > > > please suggest me a mp3 source for icecast to run on ubuntu. > > > >
2012 Aug 21
2
[LLVMdev] issues registering passes in osx 10.8
Thank you. The edit made no difference. I did a clean install and the same error is reported. Any other suggestions? regards, Ashwin On Aug 21, 2012, at 2:59 PM, Joshua Cranmer <pidgeot18 at gmail.com> wrote: > On 8/21/2012 3:52 PM, Ashwin kumar wrote: >> Hi everyone, >> >> This is Ashwin. I have a mac running osx 10.8. I am new to LLVM and have the version 3.1