Fix test failures introduced by PR #113697 (#116941)
[llvm-project.git] / llvm / tools / llvm-c-test / llvm-c-test.h
blob1da6596cd5a8f20ece54a83deaad3f39bb0e7b52
1 /*===-- llvm-c-test.h - tool for testing libLLVM and llvm-c API -----------===*\
2 |* *|
3 |* Part of the LLVM Project, under the Apache License v2.0 with LLVM *|
4 |* Exceptions. *|
5 |* See https://llvm.org/LICENSE.txt for license information. *|
6 |* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception *|
7 |* *|
8 |*===----------------------------------------------------------------------===*|
9 |* *|
10 |* Header file for llvm-c-test *|
11 |* *|
12 \*===----------------------------------------------------------------------===*/
13 #ifndef LLVM_C_TEST_H
14 #define LLVM_C_TEST_H
16 #include <stdbool.h>
17 #include "llvm-c/Core.h"
19 #ifdef __cplusplus
20 extern "C" {
21 #endif
23 // helpers.c
24 void llvm_tokenize_stdin(void (*cb)(char **tokens, int ntokens));
26 // module.c
27 LLVMModuleRef llvm_load_module(LLVMContextRef C, bool Lazy, bool New);
28 int llvm_module_dump(bool Lazy, bool New);
29 int llvm_module_list_functions(void);
30 int llvm_module_list_globals(void);
32 // calc.c
33 int llvm_calc(void);
35 // disassemble.c
36 int llvm_disassemble(void);
38 // debuginfo.c
39 int llvm_test_dibuilder(void);
40 int llvm_get_di_tag(void);
41 int llvm_di_type_get_name(void);
43 // metadata.c
44 int llvm_add_named_metadata_operand(void);
45 int llvm_set_metadata(void);
46 int llvm_replace_md_operand(void);
47 int llvm_is_a_value_as_metadata(void);
49 // object.c
50 int llvm_object_list_sections(void);
51 int llvm_object_list_symbols(void);
53 // targets.c
54 int llvm_targets_list(void);
56 // echo.c
57 int llvm_echo(void);
59 // diagnostic.c
60 int llvm_test_diagnostic_handler(void);
62 // attributes.c
63 int llvm_test_function_attributes(void);
64 int llvm_test_callsite_attributes(void);
66 #ifdef __cplusplus
68 #endif /* !defined(__cplusplus) */
70 #endif