Enforce new include conventions

This commit is contained in:
Pietro Fezzardi
2020-11-12 17:52:46 +01:00
parent 47cdb9fcc9
commit 93d9cbb67b
63 changed files with 220 additions and 383 deletions
+11 -14
View File
@@ -4,24 +4,21 @@
// Copyright rev.ng Srls. See LICENSE.md for details.
//
// LLVM includes
#include <llvm/IR/DerivedTypes.h>
#include <llvm/IR/Instruction.h>
#include <llvm/IR/Instructions.h>
#include "llvm/IR/DerivedTypes.h"
#include "llvm/IR/Instruction.h"
#include "llvm/IR/Instructions.h"
// clang includes
#include <clang/AST/ASTContext.h>
#include <clang/AST/Decl.h>
#include <clang/AST/DeclGroup.h>
#include <clang/AST/Expr.h>
#include <clang/AST/OperationKinds.h>
#include <clang/AST/Stmt.h>
#include "clang/AST/ASTContext.h"
#include "clang/AST/Decl.h"
#include "clang/AST/DeclGroup.h"
#include "clang/AST/Expr.h"
#include "clang/AST/OperationKinds.h"
#include "clang/AST/Stmt.h"
// revng includes
#include <revng/Support/IRHelpers.h>
#include "revng/Support/IRHelpers.h"
// local includes
#include "ASTBuildAnalysis.h"
#include "DecompilationHelpers.h"
#include "IRASTTypeTranslation.h"
#include "Mangling.h"