Displaying 5 results from an estimated 5 matches for "astnod".
Did you mean:
astnode
2012 Dec 30
3
[LLVMdev] git repository of the tutorial
...ub.com/Journeyer/klang.git
>
> There exist many branches and each branch is for each chapter of Kaleidoscope.
Hi Journeyer,
Thanks! I'm following instructions in the README. But I get the
following error when run make -j8 in llvm_obj_dir$. Do you know what
is wrong?
llvm[4]: Compiling ASTNodes.cpp for Debug+Asserts build
In file included from
/Users/py/dvcs_src/llvm/projects/klang/lib/AST/ASTNodes.cpp:15:
/Users/py/dvcs_src/llvm_obj_dir/projects/klang/../../../llvm/projects/klang/include/klang/Driver/Driver.h:23:10:
fatal error:
'llvm/Support/IRBuilder.h' file not found
#...
2012 Dec 30
0
[LLVMdev] git repository of the tutorial
Hello Peng Yu and List,
I have put toy.cpp into github but it has a form of LLVM project
makefile infrastructure. So you can build it together with LLVM
Project source tree.
git://github.com/Journeyer/klang.git
There exist many branches and each branch is for each chapter of Kaleidoscope.
Regards
Journeyer
2012/12/30 Peng Yu <pengyu.ut at gmail.com>:
> Hi,
>
> I'm learning
2012 Dec 30
0
[LLVMdev] git repository of the tutorial
...e exist many branches and each branch is for each chapter of Kaleidoscope.
>
> Hi Journeyer,
>
> Thanks! I'm following instructions in the README. But I get the
> following error when run make -j8 in llvm_obj_dir$. Do you know what
> is wrong?
>
>
> llvm[4]: Compiling ASTNodes.cpp for Debug+Asserts build
> In file included from
> /Users/py/dvcs_src/llvm/projects/klang/lib/AST/ASTNodes.cpp:15:
> /Users/py/dvcs_src/llvm_obj_dir/projects/klang/../../../llvm/projects/klang/include/klang/Driver/Driver.h:23:10:
> fatal error:
> 'llvm/Support/IRBuilde...
2012 Dec 30
4
[LLVMdev] git repository of the tutorial
Hi,
I'm learning the tutorial.
http://llvm.org/docs/tutorial/
I'm wondering if there is already a git repository of the examples in
the tutorial so that I don't have to copy the code from the webpage.
Thanks!
--
Regards,
Peng
2018 Dec 04
4
[cfe-dev] RFC: Modernizing our use of auto
...y to
write but it makes the types substantially harder for the reader to
understand.
> In the case that came up in review for me, the code I submitted is
> >
> > template <typename BaseT, typename DerivedT>
> > void registerIfNodeMatcher(...) {
> > auto NodeKind = ASTNodeKind::getFromNodeKind<DerivedT>();
> > if (!NodeKind.isNone())
> > NodeCtors[NodeKind] = std::make_pair(MatcherName, Descriptor);
> > }
> >
> > but it was rejected as unreadable and I was given a link to the coding
> guidelines.
>
> I agree, this see...