diff options
Diffstat (limited to 'llvm/tools/llvm-c-test/llvm-c-test.h')
-rw-r--r-- | llvm/tools/llvm-c-test/llvm-c-test.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/tools/llvm-c-test/llvm-c-test.h b/llvm/tools/llvm-c-test/llvm-c-test.h index 1b4976ae142..5f49d702b21 100644 --- a/llvm/tools/llvm-c-test/llvm-c-test.h +++ b/llvm/tools/llvm-c-test/llvm-c-test.h @@ -13,11 +13,13 @@ #ifndef LLVM_C_TEST_H #define LLVM_C_TEST_H +#include <stdbool.h> + // helpers.c void tokenize_stdin(void (*cb)(char **tokens, int ntokens)); // module.c -int module_dump(void); +int module_dump(bool Lazy); int module_list_functions(void); int module_list_globals(void); |