search for: cs13m1017

Displaying 6 results from an estimated 6 matches for "cs13m1017".

2014 Jun 05
2
[LLVMdev] Not able to run pass
...build it. > I suggest to start with something simpler for first .bc example, like: > > > cat > t.c > int main() { return 1+2; } > > > clang -emit-llvm -c t.c -o hello.bc > > > Regards, > Alexander > > > 2014-06-04 23:22 GMT+04:00 Prashanth Sharma <cs13m1017 at iith.ac.in>: > > attaching screenshot of errors I got >> >> >> On Wed, Jun 4, 2014 at 11:07 PM, Prashanth Sharma <cs13m1017 at iith.ac.in> >> wrote: >> >>> sir, >>> that I already applied this.As I followed these steps:-please tell...
2014 Jun 04
1
[LLVMdev] Not able to run pass
attaching screenshot of errors I got On Wed, Jun 4, 2014 at 11:07 PM, Prashanth Sharma <cs13m1017 at iith.ac.in> wrote: > sir, > that I already applied this.As I followed these steps:-please tell me > whered did i go wrong? > > 1. Checkout LLVM: > - cd LLVM > - svn co http://llvm.org/svn/llvm-project/llvm/trunk llvm > 2. Checkout Clang: > -...
2014 Jun 02
2
[LLVMdev] Not able to run pass
sir, As defined in http://llvm.org/docs/WritingAnLLVMPass.html#setting-up-the-build-environment running pass with opt but here how I get hello.bc file . -- Thanks Prashant Sharma -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140602/648e5547/attachment.html>
2014 Jun 07
2
[LLVMdev] Not able to run pass
...t able to generate .bc file of hello.cpp(the pass file) as it is giving errors when I use clang -emit-llvm -c hello.cpp -o hello.bc.So please if you can help me. Thanks On Fri, Jun 6, 2014 at 3:48 PM, Dan Liew <dan at su-root.co.uk> wrote: > On 5 June 2014 10:12, Prashanth Sharma <cs13m1017 at iith.ac.in> wrote: > > sir, > > I am able to generate .bc file for other normal code but my problem how > to > > run the pass source code. If I write some pass then how should I run that > > pass? > > The answer is right there is the documentation > > ``...
2014 Jun 14
2
[LLVMdev] Why llvm-pass don't work when applied on itself(passfile)
Hi, I applied some pass i.e. Hello pass on Hello.cpp(the pass file).It doesnot work as using command clang -emit-llvm -c Hello.c(Hell.cpp) does not create any .bc file .Can any body have some suggestion ? -- Thanks Prashant Sharma -------------- next part -------------- An HTML attachment was scrubbed... URL:
2014 Jun 15
2
[LLVMdev] Why llvm-pass don't work when applied on itself(passfile)
Let's take Hello.cpp pass file from llvm/lib/Transform/Hello. Now I want to run clang -emit-llvm -c Hello.cpp(Hello.c).Means I want to apply this pass on itself.Then there are too many errors. On Sun, Jun 15, 2014 at 10:27 PM, John Criswell <criswell at illinois.edu> wrote: > On 6/14/14, 6:02 AM, Prashanth Sharma wrote: > > Hi, > I applied some pass i.e. Hello pass on