<div dir="ltr">On 29 July 2013 20:41, Caldarale, Charles R <span dir="ltr"><<a href="mailto:Chuck.Caldarale@unisys.com" target="_blank">Chuck.Caldarale@unisys.com</a>></span> wrote:<br><div class="gmail_extra"><div class="gmail_quote">
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div class="im">> Seems that Vijay is asking about converting C program to LLVM IR<br>

<br>
</div>Which is exactly what clang does, hence the previous answer from Eli.<br></blockquote><div></div></div><br></div><div class="gmail_extra">We seem to have a communication breakdown. My quick answer was also "look at Clang", though it seems they're asking for something different...</div>
<div class="gmail_extra"><br></div><div class="gmail_extra">As far as I know, there isn't any C/C++ EBNF -> LLVM IR parsers available, as there aren't crazy enough folks out there... ;)</div><div class="gmail_extra">
<br></div><div class="gmail_extra">A few hints:</div><div class="gmail_extra"> * If you're looking for the EBNF description of C/C++, google for "C++ ebnf" and you'll find plenty.</div><div class="gmail_extra">
 * If you need a compiler for C/C++, look at Clang, and you'll find a great implementation.<br></div><div class="gmail_extra"> * If you're looking for a tool that gets a C/C++ grammar and transforms into a parser (like bison), you may find examples at the Gnu Bison docs. You can than use that to convert your AST to LLVM IR, but you'll have to hand-code the bridge yourself.</div>
<div class="gmail_extra"><br></div><div class="gmail_extra">cheers,<br></div><div class="gmail_extra">--renato</div></div>