dibyendumajumdar / dmr_c

dmr_C is a C parser and JIT compiler with LLVM, Eclipse OMR and NanoJIT backends
Other
52 stars 2 forks source link

(*)() function pointer call syntax is not handled correctly #7

Open dibyendumajumdar opened 7 years ago

dibyendumajumdar commented 7 years ago

If you have a pointer to function then following works:

f()

But this doesn't:

(*f)()

The generated linearized output is wrong.