JulianKemmerer / PipelineC

A C-like hardware description language (HDL) adding high level synthesis(HLS)-like automatic pipelining as a language construct/compiler feature.
https://github.com/JulianKemmerer/PipelineC/wiki
GNU General Public License v3.0
569 stars 46 forks source link

Fix operator overloading to allow use of built in operator in overload #178

Open JulianKemmerer opened 10 months ago

JulianKemmerer commented 10 months ago

Operator overloading can't use built in version of operator in definition of overload. Fix this to separate user's version of built in vs built in...

Work around is to use the generated C code from the built in version as user code under different function name...