diff options
| author | Arnaldo Carvalho de Melo <[email protected]> | 2016-03-23 12:28:59 -0300 |
|---|---|---|
| committer | Arnaldo Carvalho de Melo <[email protected]> | 2016-03-23 12:30:42 -0300 |
| commit | 236f71eb94eb3dc5161bcd9310805ae6bd444ce0 (patch) | |
| tree | a85cf377b2c2241dcae6533e656b7847a4b53ec7 | |
| parent | a3dff304ca50cbfbe3f0e76ee49c439990932ed5 (diff) | |
perf tools: Remove unused DIE_IF macro
Cc: Adrian Hunter <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Wang Nan <[email protected]>
Link: http://lkml.kernel.org/n/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
| -rw-r--r-- | tools/perf/util/util.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/tools/perf/util/util.h b/tools/perf/util/util.h index d0d50cef8b2a..1b06216d31df 100644 --- a/tools/perf/util/util.h +++ b/tools/perf/util/util.h @@ -140,13 +140,6 @@ extern void warning(const char *err, ...) __attribute__((format (printf, 1, 2))) #include "../../../include/linux/stringify.h" -#define DIE_IF(cnd) \ - do { if (cnd) \ - die(" at (" __FILE__ ":" __stringify(__LINE__) "): " \ - __stringify(cnd) "\n"); \ - } while (0) - - extern void set_die_routine(void (*routine)(const char *err, va_list params) NORETURN); extern void set_warning_routine(void (*routine)(const char *err, va_list params)); |