ParaToolsInc / salt

2 stars 0 forks source link

Separate frontend-related functions into separate source file #6

Closed nchaimov closed 2 years ago

nchaimov commented 2 years ago

The current code mixes what are logically three separate components into one source file: frontend (argument parsing and invoking Clang), instrumentation in general, and specific implementations of instrumentation. As a start to refactoring the code, the frontend-related functions should be moved into a separate source file and a public API defined through which it invokes the other components.

nchaimov commented 2 years ago

Implemented by #7. Thanks, @vikram8128!