spcl / perf-taint

Taint-based program analysis framework for empirical performance modeling.
BSD 3-Clause "New" or "Revised" License
5 stars 2 forks source link

Failure on program with no functions #32

Closed mcopik closed 3 years ago

mcopik commented 3 years ago

We get exit code 5 when there are no functions present

Example

#include <stdlib.h>
#include <assert.h>

#include "perf-taint/PerfTaint.h"

int main(int argc, char ** argv)
{
  return 0;
}