LLVM LL(k) grammar

Hello,

Does a LL(k) grammar of LLVM assembly language exist somewhere ?

Thanks

JC

Nope, however, there is a bison grammar here:

llvm/lib/AsmParser/llvmAsmParser.y

with a lexer in the same directory. The grammar is pretty simple, and if you have any questions, feel free to ask.

-Chris