2013-10-23 10:10:20 +02:00
|
|
|
/*===-- include-all.c - tool for testing libLLVM and llvm-c API -----------===*\
|
|
|
|
|* *|
|
2019-01-19 09:50:56 +01:00
|
|
|
|* Part of the LLVM Project, under the Apache License v2.0 with LLVM *|
|
|
|
|
|* Exceptions. *|
|
|
|
|
|* See https://llvm.org/LICENSE.txt for license information. *|
|
|
|
|
|* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception *|
|
2013-10-23 10:10:20 +02:00
|
|
|
|* *|
|
|
|
|
|*===----------------------------------------------------------------------===*|
|
|
|
|
|* *|
|
|
|
|
|* This file doesn't have any actual code. It just make sure that all *|
|
|
|
|
|* the llvm-c include files are good and doesn't generate any warnings *|
|
|
|
|
|* *|
|
|
|
|
\*===----------------------------------------------------------------------===*/
|
|
|
|
|
|
|
|
// FIXME: Autogenerate this list
|
|
|
|
|
|
|
|
#include "llvm-c/Analysis.h"
|
|
|
|
#include "llvm-c/BitReader.h"
|
|
|
|
#include "llvm-c/BitWriter.h"
|
2019-05-06 13:31:45 +02:00
|
|
|
#include "llvm-c/Comdat.h"
|
2013-10-23 10:10:20 +02:00
|
|
|
#include "llvm-c/Core.h"
|
2019-05-06 13:31:45 +02:00
|
|
|
#include "llvm-c/DataTypes.h"
|
|
|
|
#include "llvm-c/DebugInfo.h"
|
2013-10-23 10:10:20 +02:00
|
|
|
#include "llvm-c/Disassembler.h"
|
2019-05-06 13:31:45 +02:00
|
|
|
#include "llvm-c/DisassemblerTypes.h"
|
|
|
|
#include "llvm-c/Error.h"
|
|
|
|
#include "llvm-c/ErrorHandling.h"
|
2013-10-23 10:10:20 +02:00
|
|
|
#include "llvm-c/ExecutionEngine.h"
|
|
|
|
#include "llvm-c/Initialization.h"
|
2019-05-06 13:31:45 +02:00
|
|
|
#include "llvm-c/IRReader.h"
|
2013-10-23 10:10:20 +02:00
|
|
|
#include "llvm-c/Linker.h"
|
2019-05-06 13:31:45 +02:00
|
|
|
#include "llvm-c/LinkTimeOptimizer.h"
|
2013-10-23 10:10:20 +02:00
|
|
|
#include "llvm-c/Object.h"
|
2019-05-06 13:31:45 +02:00
|
|
|
#include "llvm-c/OrcBindings.h"
|
|
|
|
#include "llvm-c/Remarks.h"
|
|
|
|
#include "llvm-c/Support.h"
|
2013-10-23 10:10:20 +02:00
|
|
|
#include "llvm-c/Target.h"
|
|
|
|
#include "llvm-c/TargetMachine.h"
|
2019-05-06 13:31:45 +02:00
|
|
|
#include "llvm-c/Transforms/AggressiveInstCombine.h"
|
|
|
|
#include "llvm-c/Transforms/Coroutines.h"
|
|
|
|
#include "llvm-c/Transforms/InstCombine.h"
|
2013-10-23 10:10:20 +02:00
|
|
|
#include "llvm-c/Transforms/IPO.h"
|
|
|
|
#include "llvm-c/Transforms/PassManagerBuilder.h"
|
|
|
|
#include "llvm-c/Transforms/Scalar.h"
|
2019-05-06 13:31:45 +02:00
|
|
|
#include "llvm-c/Transforms/Utils.h"
|
2013-10-23 10:10:20 +02:00
|
|
|
#include "llvm-c/Transforms/Vectorize.h"
|
2019-05-06 13:31:45 +02:00
|
|
|
#include "llvm-c/Types.h"
|
2013-10-23 10:10:20 +02:00
|
|
|
#include "llvm-c/lto.h"
|