1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 02:33:06 +01:00

Changes For Bug 352

Move include/Config and include/Support into include/llvm/Config,
include/llvm/ADT and include/llvm/Support. From here on out, all LLVM
public header files must be under include/llvm/.

llvm-svn: 16137
This commit is contained in:
Reid Spencer 2004-09-01 22:55:40 +00:00
parent e7e63c8da4
commit c4abcbefb1
341 changed files with 720 additions and 713 deletions

View File

@ -8,7 +8,7 @@ dnl Quit if the source directory has already been configured.
dnl NOTE: This relies upon undocumented autoconf behavior.
if test ${srcdir} != "."
then
if test -f ${srcdir}/include/Config/config.h
if test -f ${srcdir}/include/llvm/Config/config.h
then
AC_MSG_ERROR([Already configured in ${srcdir}])
fi
@ -27,15 +27,15 @@ do
done
dnl Configure header files
AC_CONFIG_HEADERS(include/Config/config.h)
AC_CONFIG_HEADERS(include/llvm/Config/config.h)
dnl Configure other output file
AC_CONFIG_FILES(Makefile.config
include/Support/DataTypes.h
include/Support/ThreadSupport.h
include/Support/hash_map
include/Support/hash_set
include/Support/iterator)
include/llvm/Support/DataTypes.h
include/llvm/Support/ThreadSupport.h
include/llvm/ADT/hash_map
include/llvm/ADT/hash_set
include/llvm/ADT/iterator)
dnl Do special configuration of Makefiles
AC_CONFIG_MAKEFILE(Makefile)

18
configure vendored
View File

@ -1544,7 +1544,7 @@ ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure.
if test ${srcdir} != "."
then
if test -f ${srcdir}/include/Config/config.h
if test -f ${srcdir}/include/llvm/Config/config.h
then
{ { echo "$as_me:$LINENO: error: Already configured in ${srcdir}" >&5
echo "$as_me: error: Already configured in ${srcdir}" >&2;}
@ -1566,10 +1566,10 @@ subdirs="$subdirs projects/${i}"
fi
done
ac_config_headers="$ac_config_headers include/Config/config.h"
ac_config_headers="$ac_config_headers include/llvm/Config/config.h"
ac_config_files="$ac_config_files Makefile.config include/Support/DataTypes.h include/Support/ThreadSupport.h include/Support/hash_map include/Support/hash_set include/Support/iterator"
ac_config_files="$ac_config_files Makefile.config include/llvm/Support/DataTypes.h include/llvm/Support/ThreadSupport.h include/llvm/ADT/hash_map include/llvm/ADT/hash_set include/llvm/ADT/iterator"
ac_config_commands="$ac_config_commands Makefile"
@ -24450,11 +24450,11 @@ do
case "$ac_config_target" in
# Handling of arguments.
"Makefile.config" ) CONFIG_FILES="$CONFIG_FILES Makefile.config" ;;
"include/Support/DataTypes.h" ) CONFIG_FILES="$CONFIG_FILES include/Support/DataTypes.h" ;;
"include/Support/ThreadSupport.h" ) CONFIG_FILES="$CONFIG_FILES include/Support/ThreadSupport.h" ;;
"include/Support/hash_map" ) CONFIG_FILES="$CONFIG_FILES include/Support/hash_map" ;;
"include/Support/hash_set" ) CONFIG_FILES="$CONFIG_FILES include/Support/hash_set" ;;
"include/Support/iterator" ) CONFIG_FILES="$CONFIG_FILES include/Support/iterator" ;;
"include/llvm/Support/DataTypes.h" ) CONFIG_FILES="$CONFIG_FILES include/llvm/Support/DataTypes.h" ;;
"include/llvm/Support/ThreadSupport.h" ) CONFIG_FILES="$CONFIG_FILES include/llvm/Support/ThreadSupport.h" ;;
"include/llvm/ADT/hash_map" ) CONFIG_FILES="$CONFIG_FILES include/llvm/ADT/hash_map" ;;
"include/llvm/ADT/hash_set" ) CONFIG_FILES="$CONFIG_FILES include/llvm/ADT/hash_set" ;;
"include/llvm/ADT/iterator" ) CONFIG_FILES="$CONFIG_FILES include/llvm/ADT/iterator" ;;
"lib/System/platform" ) CONFIG_LINKS="$CONFIG_LINKS lib/System/platform:lib/System/$platform_type" ;;
"Makefile" ) CONFIG_COMMANDS="$CONFIG_COMMANDS Makefile" ;;
"Makefile.common" ) CONFIG_COMMANDS="$CONFIG_COMMANDS Makefile.common" ;;
@ -24507,7 +24507,7 @@ do
"tools/Makefile" ) CONFIG_COMMANDS="$CONFIG_COMMANDS tools/Makefile" ;;
"utils/Makefile" ) CONFIG_COMMANDS="$CONFIG_COMMANDS utils/Makefile" ;;
"projects/Makefile" ) CONFIG_COMMANDS="$CONFIG_COMMANDS projects/Makefile" ;;
"include/Config/config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS include/Config/config.h" ;;
"include/llvm/Config/config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS include/llvm/Config/config.h" ;;
*) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
{ (exit 1); exit 1; }; };;

View File

@ -1,4 +1,4 @@
//===-- BitVectorSet.h - A bit-vector representation of sets ----*- C++ -*-===//
//===-- llvm/ADT/BitVectorSet.h - A bit-vector rep. of sets -----*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -22,8 +22,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_BITSETVECTOR_H
#define SUPPORT_BITSETVECTOR_H
#ifndef LLVM_ADT_BITSETVECTOR_H
#define LLVM_ADT_BITSETVECTOR_H
#include <bitset>
#include <vector>

View File

@ -1,4 +1,4 @@
//===- DenseMap.h - A dense map implmentation -------------------*- C++ -*-===//
//===- llvm/ADT/DenseMap.h - A dense map implmentation ----------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -17,8 +17,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_DENSEMAP_H
#define SUPPORT_DENSEMAP_H
#ifndef LLVM_ADT_DENSEMAP_H
#define LLVM_ADT_DENSEMAP_H
#include <vector>

View File

@ -1,4 +1,4 @@
//===- Support/DepthFirstIterator.h - Depth First iterator ------*- C++ -*-===//
//===- llvm/ADT/DepthFirstIterator.h - Depth First iterator -----*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -7,7 +7,7 @@
//
//===----------------------------------------------------------------------===//
//
// This file builds on the Support/GraphTraits.h file to build generic depth
// This file builds on the ADT/GraphTraits.h file to build generic depth
// first graph iterator. This file exposes the following functions/types:
//
// df_begin/df_end/df_iterator
@ -30,11 +30,11 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_DEPTHFIRSTITERATOR_H
#define SUPPORT_DEPTHFIRSTITERATOR_H
#ifndef LLVM_ADT_DEPTHFIRSTITERATOR_H
#define LLVM_ADT_DEPTHFIRSTITERATOR_H
#include "Support/GraphTraits.h"
#include "Support/iterator"
#include "llvm/ADT/GraphTraits.h"
#include "llvm/ADT/iterator"
#include <vector>
#include <set>

View File

@ -1,4 +1,4 @@
//===-- Support/EquivalenceClasses.h ----------------------------*- C++ -*-===//
//===-- llvm/ADT/EquivalenceClasses.h - Generic Equiv. Classes --*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -14,8 +14,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_EQUIVALENCECLASSES_H
#define SUPPORT_EQUIVALENCECLASSES_H
#ifndef LLVM_ADT_EQUIVALENCECLASSES_H
#define LLVM_ADT_EQUIVALENCECLASSES_H
#include <map>
#include <set>

View File

@ -1,4 +1,4 @@
//===-- Support/GraphTraits.h - Graph traits template -----------*- C++ -*-===//
//===-- llvm/ADT/GraphTraits.h - Graph traits template ----------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -15,8 +15,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_GRAPHTRAITS_H
#define SUPPORT_GRAPHTRAITS_H
#ifndef LLVM_ADT_GRAPHTRAITS_H
#define LLVM_ADT_GRAPHTRAITS_H
namespace llvm {

View File

@ -1,4 +1,4 @@
//===-- HashExtras.h - Useful functions for STL hash containers -*- C++ -*-===//
//===-- llvm/ADT/HashExtras.h - Useful functions for STL hash ---*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -14,10 +14,10 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_HASHEXTRAS_H
#define SUPPORT_HASHEXTRAS_H
#ifndef LLVM_ADT_HASHEXTRAS_H
#define LLVM_ADT_HASHEXTRAS_H
#include "Support/hash_map"
#include "llvm/ADT/hash_map"
#include <string>
// Cannot specialize hash template from outside of the std namespace.

View File

@ -1,4 +1,4 @@
//===- Support/PostOrderIterator.h - Generic PostOrder iterator -*- C++ -*-===//
//===- llvm/ADT/PostOrderIterator.h - PostOrder iterator --------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -7,17 +7,17 @@
//
//===----------------------------------------------------------------------===//
//
// This file builds on the Support/GraphTraits.h file to build a generic graph
// This file builds on the ADT/GraphTraits.h file to build a generic graph
// post order iterator. This should work over any graph type that has a
// GraphTraits specialization.
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_POSTORDERITERATOR_H
#define SUPPORT_POSTORDERITERATOR_H
#ifndef LLVM_ADT_POSTORDERITERATOR_H
#define LLVM_ADT_POSTORDERITERATOR_H
#include "Support/GraphTraits.h"
#include "Support/iterator"
#include "llvm/ADT/GraphTraits.h"
#include "llvm/ADT/iterator"
#include <stack>
#include <set>

View File

@ -1,4 +1,4 @@
//===-- Support/SCCIterator.h - SCC iterator --------------------*- C++ -*-===//
//===-- Support/SCCIterator.h - Strongly Connected Comp. Iter. --*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -7,7 +7,7 @@
//
//===----------------------------------------------------------------------===//
//
// This builds on the Support/GraphTraits.h file to find the strongly connected
// This builds on the llvm/ADT/GraphTraits.h file to find the strongly connected
// components (SCCs) of a graph in O(N+E) time using Tarjan's DFS algorithm.
//
// The SCC iterator has the important property that if a node in SCC S1 has an
@ -18,11 +18,11 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_SCCITERATOR_H
#define SUPPORT_SCCITERATOR_H
#ifndef LLVM_ADT_SCCITERATOR_H
#define LLVM_ADT_SCCITERATOR_H
#include "Support/GraphTraits.h"
#include "Support/iterator"
#include "llvm/ADT/GraphTraits.h"
#include "llvm/ADT/iterator"
#include <vector>
#include <map>

View File

@ -1,4 +1,4 @@
//===- STLExtras.h - Useful functions when working with the STL -*- C++ -*-===//
//===- llvm/ADT/STLExtras.h - Useful STL related functions ------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -14,12 +14,12 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_STLEXTRAS_H
#define SUPPORT_STLEXTRAS_H
#ifndef LLVM_ADT_STLEXTRAS_H
#define LLVM_ADT_STLEXTRAS_H
#include <functional>
#include <utility> // for std::pair
#include "Support/iterator"
#include "llvm/ADT/iterator"
namespace llvm {

View File

@ -1,4 +1,4 @@
//===-- Support/SetOperations.h - Generic Set Operations --------*- C++ -*-===//
//===-- llvm/ADT/SetOperations.h - Generic Set Operations -------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -12,8 +12,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_SETOPERATIONS_H
#define SUPPORT_SETOPERATIONS_H
#ifndef LLVM_ADT_SETOPERATIONS_H
#define LLVM_ADT_SETOPERATIONS_H
namespace llvm {

View File

@ -1,4 +1,4 @@
//===- SetVector.h - A set with insertion order iteration -------*- C++ -*-===//
//===- llvm/ADT/SetVector.h - Set with insert order iteration ---*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -14,8 +14,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_SETVECTOR_H
#define SUPPORT_SETVECTOR_H
#ifndef LLVM_ADT_SETVECTOR_H
#define LLVM_ADT_SETVECTOR_H
#include <set>
#include <vector>

View File

@ -1,4 +1,4 @@
//===-- Support/Statistic.h - Easy way to expose stats ----------*- C++ -*-===//
//===-- llvm/ADT/Statistic.h - Easy way to expose stats ---------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -21,8 +21,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_STATISTIC_H
#define SUPPORT_STATISTIC_H
#ifndef LLVM_ADT_STATISTIC_H
#define LLVM_ADT_STATISTIC_H
#include <iostream>

View File

@ -1,4 +1,4 @@
//===-- Support/StringExtras.h - Useful string functions --------*- C++ -*-===//
//===-- llvm/ADT/StringExtras.h - Useful string functions -------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -11,10 +11,10 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_STRINGEXTRAS_H
#define SUPPORT_STRINGEXTRAS_H
#ifndef LLVM_ADT_STRINGEXTRAS_H
#define LLVM_ADT_STRINGEXTRAS_H
#include "Support/DataTypes.h"
#include "llvm/Support/DataTypes.h"
#include <cctype>
#include <cstdio>
#include <string>

View File

@ -1,4 +1,4 @@
//===- Support/Tree.h - Generic n-way tree structure ------------*- C++ -*-===//
//===- llvm/ADT/Tree.h - Generic n-way tree structure -----------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -12,8 +12,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_TREE_H
#define SUPPORT_TREE_H
#ifndef LLVM_ADT_TREE_H
#define LLVM_ADT_TREE_H
#include <vector>

View File

@ -1,4 +1,4 @@
//===-- VectorExtras.h - Helper functions for std::vector -------*- C++ -*-===//
//===-- llvm/ADT/VectorExtras.h - Helpers for std::vector -------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -12,8 +12,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_VECTOREXTRAS_H
#define SUPPORT_VECTOREXTRAS_H
#ifndef LLVM_ADT_VECTOREXTRAS_H
#define LLVM_ADT_VECTOREXTRAS_H
#include <cstdarg>

View File

@ -1,4 +1,4 @@
//===-- Support/hash_map - "Portable" wrapper around hash_map ---*- C++ -*-===//
//===-- llvm/ADT/hash_map - "Portable" wrapper around hash_map --*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -14,8 +14,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_HASH_MAP
#define SUPPORT_HASH_MAP
#ifndef LLVM_ADT_HASH_MAP
#define LLVM_ADT_HASH_MAP
// Compiler Support Matrix
//
@ -61,6 +61,6 @@ using HASH_NAMESPACE::hash;
// out specializations like stl_bvector.h, causing link conflicts.
#include <vector>
#include <Support/HashExtras.h>
#include <llvm/ADT/HashExtras.h>
#endif

View File

@ -1,4 +1,4 @@
//===-- Support/hash_set - "Portable" wrapper around hash_set ---*- C++ -*-===//
//===-- llvm/ADT/hash_set - "Portable" wrapper around hash_set --*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -15,8 +15,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_HASH_SET
#define SUPPORT_HASH_SET
#ifndef LLVM_ADT_HASH_SET
#define LLVM_ADT_HASH_SET
// Compiler Support Matrix
//
@ -62,6 +62,6 @@ using HASH_NAMESPACE::hash;
// out specializations like stl_bvector.h, causing link conflicts.
#include <vector>
#include <Support/HashExtras.h>
#include <llvm/ADT/HashExtras.h>
#endif

View File

@ -1,4 +1,4 @@
//===-- Support/ilist - Intrusive Linked List Template ----------*- C++ -*-===//
//===-- llvm/ADT/ilist - Intrusive Linked List Template ---------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -35,10 +35,10 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_ILIST
#define SUPPORT_ILIST
#ifndef LLVM_ADT_ILIST
#define LLVM_ADT_ILIST
#include <Support/iterator>
#include <llvm/ADT/iterator>
#include <cassert>
namespace llvm {

View File

@ -1,4 +1,4 @@
//===-- Support/iterator - "Portable" wrapper around <iterator> -*- C++ -*-===//
//===-- llvm/ADT/iterator - Portable wrapper around <iterator> --*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -25,8 +25,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_ITERATOR
#define SUPPORT_ITERATOR
#ifndef LLVM_ADT_ITERATOR
#define LLVM_ADT_ITERATOR
#include <iterator>

View File

@ -18,9 +18,9 @@
#define LLVM_ANALYSIS_ALIASSETTRACKER_H
#include "llvm/Support/CallSite.h"
#include "Support/iterator"
#include "Support/hash_map"
#include "Support/ilist"
#include "llvm/ADT/iterator"
#include "llvm/ADT/hash_map"
#include "llvm/ADT/ilist"
namespace llvm {

View File

@ -51,8 +51,8 @@
#ifndef LLVM_ANALYSIS_CALLGRAPH_H
#define LLVM_ANALYSIS_CALLGRAPH_H
#include "Support/GraphTraits.h"
#include "Support/STLExtras.h"
#include "llvm/ADT/GraphTraits.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/Pass.h"
namespace llvm {

View File

@ -18,7 +18,7 @@
#include "llvm/Support/InstIterator.h"
#include "llvm/Instruction.h"
#include "Support/iterator"
#include "llvm/ADT/iterator"
namespace llvm {

View File

@ -17,9 +17,9 @@
#define LLVM_ANALYSIS_DSGRAPHTRAITS_H
#include "llvm/Analysis/DataStructure/DSGraph.h"
#include "Support/GraphTraits.h"
#include "Support/iterator"
#include "Support/STLExtras.h"
#include "llvm/ADT/GraphTraits.h"
#include "llvm/ADT/iterator"
#include "llvm/ADT/STLExtras.h"
namespace llvm {

View File

@ -15,7 +15,7 @@
#define LLVM_ANALYSIS_DSSUPPORT_H
#include <functional>
#include "Support/hash_set"
#include "llvm/ADT/hash_set"
#include "llvm/Support/CallSite.h"
namespace llvm {

View File

@ -16,7 +16,7 @@
#include "llvm/Pass.h"
#include "llvm/Target/TargetData.h"
#include "Support/hash_set"
#include "llvm/ADT/hash_set"
namespace llvm {

View File

@ -20,7 +20,7 @@
#ifndef LLVM_INTERVAL_H
#define LLVM_INTERVAL_H
#include "Support/GraphTraits.h"
#include "llvm/ADT/GraphTraits.h"
#include <vector>
#include <iosfwd>

View File

@ -31,7 +31,7 @@
#define LLVM_ANALYSIS_LOOP_INFO_H
#include "llvm/Pass.h"
#include "Support/GraphTraits.h"
#include "llvm/ADT/GraphTraits.h"
namespace llvm {

View File

@ -30,7 +30,7 @@
#include "llvm/Instruction.h"
#include "llvm/SymbolTableListTraits.h"
#include "Support/ilist"
#include "llvm/ADT/ilist"
namespace llvm {

View File

@ -15,8 +15,8 @@
#define LLVM_CODEGEN_MACHINEBASICBLOCK_H
#include "llvm/CodeGen/MachineInstr.h"
#include "Support/GraphTraits.h"
#include "Support/ilist"
#include "llvm/ADT/GraphTraits.h"
#include "llvm/ADT/ilist"
#include <iosfwd>
namespace llvm {

View File

@ -18,7 +18,7 @@
#define LLVM_CODEGEN_MACHINECODEEMITTER_H
#include <string>
#include "Support/DataTypes.h"
#include "llvm/Support/DataTypes.h"
namespace llvm {

View File

@ -19,7 +19,7 @@
#define LLVM_CODEGEN_MACHINEFUNCTION_H
#include "llvm/CodeGen/MachineBasicBlock.h"
#include "Support/Annotation.h"
#include "llvm/Support/Annotation.h"
namespace llvm {

View File

@ -16,7 +16,7 @@
#ifndef LLVM_CODEGEN_MACHINEINSTR_H
#define LLVM_CODEGEN_MACHINEINSTR_H
#include "Support/iterator"
#include "llvm/ADT/iterator"
#include <string>
#include <vector>
#include <cassert>

View File

@ -18,7 +18,7 @@
#define LLVM_CODEGEN_SSAREGMAP_H
#include "llvm/Target/MRegisterInfo.h"
#include "Support/DenseMap.h"
#include "llvm/ADT/DenseMap.h"
namespace llvm {

View File

@ -16,7 +16,7 @@
#define LLVM_CODEGEN_SCHEDGRAPHCOMMON_H
#include "llvm/Value.h"
#include "Support/iterator"
#include "llvm/ADT/iterator"
#include <vector>
namespace llvm {

View File

@ -23,7 +23,7 @@
#define LLVM_CODEGEN_SELECTIONDAG_H
#include "llvm/CodeGen/ValueTypes.h"
#include "Support/DataTypes.h"
#include "llvm/Support/DataTypes.h"
#include <map>
#include <vector>
#include <cassert>

View File

@ -15,7 +15,7 @@
#ifndef _CONFIG_ALLOC_H
#define _CONFIG_ALLOC_H
#include "Config/config.h"
#include "llvm/Config/config.h"
/*
* This is a modified version of that suggested by the Autoconf manual.

View File

@ -1,4 +1,4 @@
/* include/Config/config.h.in. Generated from autoconf/configure.ac by autoheader. */
/* include/llvm/Config/config.h.in. Generated from autoconf/configure.ac by autoheader. */
/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
systems. This function is required for `alloca.c' support on those systems.

View File

@ -14,7 +14,7 @@
#ifndef _CONFIG_DLFCN_H
#define _CONFIG_DLFCN_H
#include "Config/config.h"
#include "llvm/Config/config.h"
#ifdef HAVE_DLFCN_H
#include <dlfcn.h>

View File

@ -14,7 +14,7 @@
#ifndef _CONFIG_FCNTL_H
#define _CONFIG_FCNTL_H
#include "Config/config.h"
#include "llvm/Config/config.h"
#ifdef HAVE_FCNTL_H
#include <fcntl.h>

View File

@ -14,7 +14,7 @@
#ifndef _CONFIG_LIMITS_H
#define _CONFIG_LIMITS_H
#include "Config/config.h"
#include "llvm/Config/config.h"
#ifdef HAVE_LIMITS_H
#include <limits.h>

View File

@ -15,7 +15,7 @@
#ifndef _SUPPORT_MALLOC_H
#define _SUPPORT_MALLOC_H
#include "Config/config.h"
#include "llvm/Config/config.h"
#ifdef HAVE_MALLOC_H
#include <malloc.h>

View File

@ -14,7 +14,7 @@
#ifndef _CONFIG_MEMORY_H
#define _CONFIG_MEMORY_H
#include "Config/config.h"
#include "llvm/Config/config.h"
#ifdef HAVE_MEMORY_H
#include <memory.h>

View File

@ -12,7 +12,7 @@
#ifndef PAGESIZE_H
#define PAGESIZE_H
#include "Config/unistd.h"
#include "llvm/Config/unistd.h"
#include <sys/param.h>
namespace llvm {

View File

@ -14,7 +14,7 @@
#ifndef _CONFIG_STDINT_H
#define _CONFIG_STDINT_H
#include "Config/config.h"
#include "llvm/Config/config.h"
#ifdef HAVE_STDINT_H
#include <stdint.h>

View File

@ -18,7 +18,7 @@
#ifndef _CONFIG_MMAN_H
#define _CONFIG_MMAN_H
#include "Config/config.h"
#include "llvm/Config/config.h"
#if defined(HAVE_SYS_MMAN_H) && !defined(_MSC_VER)
#include <sys/mman.h>

View File

@ -16,7 +16,7 @@
#ifndef _CONFIG_SYS_RESOURCE_H
#define _CONFIG_SYS_RESOURCE_H
#include "Config/config.h"
#include "llvm/Config/config.h"
#if defined(HAVE_SYS_RESOURCE_H) && !defined(_MSC_VER)
@ -25,9 +25,9 @@
* stuff. Some man pages say that you also need sys/time.h and unistd.h.
* So, to be paranoid, we will try to include all three if possible.
*/
#include "Config/sys/time.h"
#include "llvm/Config/sys/time.h"
#include <sys/resource.h>
#include "Config/unistd.h"
#include "llvm/Config/unistd.h"
#endif

View File

@ -15,7 +15,7 @@
#ifndef _CONFIG_SYS_STAT_H
#define _CONFIG_SYS_STAT_H
#include "Config/config.h"
#include "llvm/Config/config.h"
#ifdef HAVE_SYS_STAT_H
#include <sys/stat.h>

View File

@ -15,7 +15,7 @@
#ifndef _CONFIG_SYS_TIME_H
#define _CONFIG_SYS_TIME_H
#include "Config/config.h"
#include "llvm/Config/config.h"
#if defined(HAVE_SYS_TIME_H) && !defined(_MSC_VER)
#include <sys/time.h>

View File

@ -15,7 +15,7 @@
#ifndef _CONFIG_SYS_TYPES_H
#define _CONFIG_SYS_TYPES_H
#include "Config/config.h"
#include "llvm/Config/config.h"
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>

View File

@ -14,7 +14,7 @@
#ifndef _CONFIG_SYS_WAIT_H
#define _CONFIG_SYS_WAIT_H
#include "Config/config.h"
#include "llvm/Config/config.h"
#ifdef HAVE_SYS_WAIT_H
#include <sys/wait.h>

View File

@ -24,7 +24,7 @@
#ifndef _CONFIG_TIME_H
#define _CONFIG_TIME_H
#include "Config/config.h"
#include "llvm/Config/config.h"
#ifdef HAVE_TIME_H
#include <time.h>

View File

@ -14,7 +14,7 @@
#ifndef _CONFIG_UNISTD_H
#define _CONFIG_UNISTD_H
#include "Config/config.h"
#include "llvm/Config/config.h"
#if defined(HAVE_UNISTD_H) && !defined(_MSC_VER)
#include <unistd.h>

View File

@ -14,7 +14,7 @@
#ifndef LLVM_CONFIG_WINDOWS_H
#define LLVM_CONFIG_WINDOWS_H
#include "Config/config.h"
#include "llvm/Config/config.h"
#ifdef HAVE_WINDOWS_H
#include <windows.h>

View File

@ -17,7 +17,7 @@
#include "llvm/Constant.h"
#include "llvm/Type.h"
#include "Support/DataTypes.h"
#include "llvm/Support/DataTypes.h"
namespace llvm {

View File

@ -15,7 +15,7 @@
#ifndef GENERIC_VALUE_H
#define GENERIC_VALUE_H
#include "Support/DataTypes.h"
#include "llvm/Support/DataTypes.h"
namespace llvm {

View File

@ -21,7 +21,7 @@
#include "llvm/GlobalValue.h"
#include "llvm/BasicBlock.h"
#include "llvm/Argument.h"
#include "Support/Annotation.h"
#include "llvm/Support/Annotation.h"
namespace llvm {

View File

@ -1,4 +1,4 @@
//===-- Support/Annotation.h - Annotation classes ---------------*- C++ -*-===//
//===-- llvm/Support/Annotation.h - Annotation classes ----------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -19,8 +19,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_ANNOTATION_H
#define SUPPORT_ANNOTATION_H
#ifndef LLVM_SUPPORT_ANNOTATION_H
#define LLVM_SUPPORT_ANNOTATION_H
#include <string>
#include <cassert>

View File

@ -15,10 +15,10 @@
#ifndef LLVM_SUPPORT_CFG_H
#define LLVM_SUPPORT_CFG_H
#include "Support/GraphTraits.h"
#include "llvm/ADT/GraphTraits.h"
#include "llvm/Function.h"
#include "llvm/InstrTypes.h"
#include "Support/iterator"
#include "llvm/ADT/iterator"
namespace llvm {

View File

@ -1,4 +1,4 @@
//===-- Support/Casting.h - Allow flexible, checked, casts ------*- C++ -*-===//
//===-- llvm/Support/Casting.h - Allow flexible, checked, casts -*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -12,8 +12,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_CASTING_H
#define SUPPORT_CASTING_H
#ifndef LLVM_SUPPORT_CASTING_H
#define LLVM_SUPPORT_CASTING_H
namespace llvm {

View File

@ -1,4 +1,4 @@
//===- Support/CommandLine.h - Flexible Command line parser -----*- C++ -*-===//
//===- llvm/Support/CommandLine.h - Command line handler --------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -17,10 +17,10 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_COMMANDLINE_H
#define SUPPORT_COMMANDLINE_H
#ifndef LLVM_SUPPORT_COMMANDLINE_H
#define LLVM_SUPPORT_COMMANDLINE_H
#include "Support/type_traits.h"
#include "llvm/Support/type_traits.h"
#include <string>
#include <vector>
#include <utility>

View File

@ -24,7 +24,7 @@
#ifndef LLVM_SUPPORT_CONSTANT_RANGE_H
#define LLVM_SUPPORT_CONSTANT_RANGE_H
#include "Support/DataTypes.h"
#include "llvm/Support/DataTypes.h"
#include <iosfwd>
namespace llvm {

View File

@ -1,4 +1,4 @@
//===-- Support/DotGraphTraits.h - Customize .dot output --------*- C++ -*-===//
//===-- llvm/Support/DotGraphTraits.h - Customize .dot output ---*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -14,8 +14,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_DOTGRAPHTRAITS_H
#define SUPPORT_DOTGRAPHTRAITS_H
#ifndef LLVM_SUPPORT_DOTGRAPHTRAITS_H
#define LLVM_SUPPORT_DOTGRAPHTRAITS_H
#include <string>

View File

@ -1,4 +1,4 @@
//===- Debug.h - An easy way to add debug output to your code ---*- C++ -*-===//
//===- llvm/Support/Debug.h - Easy way to add debug output ------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -23,8 +23,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_DEBUG_H
#define SUPPORT_DEBUG_H
#ifndef LLVM_SUPPORT_DEBUG_H
#define LLVM_SUPPORT_DEBUG_H
// Unsurprisingly, most users of this macro use std::cerr too.
#include <iostream>

View File

@ -1,4 +1,4 @@
//===-- DynamicLinker.h - System-indep. DynamicLinker interface -*- C++ -*-===//
//===-- llvm/Support/DynamicLinker.h - Portable Dynamic Linker --*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -13,8 +13,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_DYNAMICLINKER_H
#define SUPPORT_DYNAMICLINKER_H
#ifndef LLVM_SUPPORT_DYNAMICLINKER_H
#define LLVM_SUPPORT_DYNAMICLINKER_H
#include <string>

View File

@ -1,4 +1,4 @@
//===-- Support/ELF.h - ELF constants and data structures -------*- C++ -*-===//
//===-- llvm/Support/ELF.h - ELF constants and data structures --*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -18,7 +18,10 @@
//
//===----------------------------------------------------------------------===//
#include "Support/DataTypes.h"
#ifndef LLVM_SUPPORT_ELF_H
#define LLVM_SUPPORT_ELF_H
#include "llvm/Support/DataTypes.h"
#include <cstring>
#include <cstdlib>
@ -293,3 +296,5 @@ enum {
} // end namespace ELF
} // end namespace llvm
#endif

View File

@ -1,4 +1,4 @@
//===- Support/FileUtilities.h - File System Utilities ----------*- C++ -*-===//
//===- llvm/Support/FileUtilities.h - File System Utilities -----*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -12,8 +12,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_FILEUTILITIES_H
#define SUPPORT_FILEUTILITIES_H
#ifndef LLVM_SUPPORT_FILEUTILITIES_H
#define LLVM_SUPPORT_FILEUTILITIES_H
#include <string>

View File

@ -1,4 +1,4 @@
//===-- Support/GraphWriter.h - Write a graph to a .dot file ----*- C++ -*-===//
//===-- llvm/Support/GraphWriter.h - Write graph to a .dot file -*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -20,11 +20,11 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_GRAPHWRITER_H
#define SUPPORT_GRAPHWRITER_H
#ifndef LLVM_SUPPORT_GRAPHWRITER_H
#define LLVM_SUPPORT_GRAPHWRITER_H
#include "Support/DOTGraphTraits.h"
#include "Support/GraphTraits.h"
#include "llvm/Support/DOTGraphTraits.h"
#include "llvm/ADT/GraphTraits.h"
#include <vector>
#include <iostream>

View File

@ -1,4 +1,4 @@
//===-- Support/LeakDetector.h - Provide simple leak detection --*- C++ -*-===//
//===-- llvm/Support/LeakDetector.h - Provide leak detection ----*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -19,8 +19,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_LEAKDETECTOR_H
#define SUPPORT_LEAKDETECTOR_H
#ifndef LLVM_SUPPORT_LEAKDETECTOR_H
#define LLVM_SUPPORT_LEAKDETECTOR_H
#include <string>

View File

@ -1,4 +1,4 @@
//===-- Support/MallocAllocator.h - Allocator using malloc/free -*- C++ -*-===//
//===-- llvm/Support/MallocAllocator.h --------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -17,8 +17,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_MALLOCALLOCATOR_H
#define SUPPORT_MALLOCALLOCATOR_H
#ifndef LLVM_SUPPORT_MALLOCALLOCATOR_H
#define LLVM_SUPPORT_MALLOCALLOCATOR_H
#include <cstdlib>
#include <memory>

View File

@ -1,4 +1,4 @@
//===-- Mangler.h - Self-contained llvm name mangler ------------*- C++ -*-===//
//===-- llvm/Support/Mangler.h - Self-contained name mangler ----*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//

View File

@ -1,4 +1,4 @@
//===-- Support/MathExtras.h - Useful math functions ------------*- C++ -*-===//
//===-- llvm/Support/MathExtras.h - Useful math functions -------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -11,10 +11,10 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_MATHEXTRAS_H
#define SUPPORT_MATHEXTRAS_H
#ifndef LLVM_SUPPORT_MATHEXTRAS_H
#define LLVM_SUPPORT_MATHEXTRAS_H
#include "Support/DataTypes.h"
#include "llvm/Support/DataTypes.h"
namespace llvm {

View File

@ -23,7 +23,7 @@
#ifndef LLVM_SUPPORT_PASS_NAME_PARSER_H
#define LLVM_SUPPORT_PASS_NAME_PARSER_H
#include "Support/CommandLine.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Pass.h"
#include <algorithm>
#include <iostream>

View File

@ -1,4 +1,4 @@
//===-- Support/PluginLoader.h - Provide -load option to tool ---*- C++ -*-===//
//===-- llvm/Support/PluginLoader.h - Plugin Loader for Tools ---*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -14,10 +14,10 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_PLUGINLOADER_H
#define SUPPORT_PLUGINLOADER_H
#ifndef LLVM_SUPPORT_PLUGINLOADER_H
#define LLVM_SUPPORT_PLUGINLOADER_H
#include "Support/CommandLine.h"
#include "llvm/Support/CommandLine.h"
namespace llvm {
struct PluginLoader {

View File

@ -1,4 +1,4 @@
//===- SlowOperationInformer.h - Keep the user informed ---------*- C++ -*-===//
//===- llvm/Support/SlowOperationInformer.h - Keep user informed *- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -28,8 +28,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_SLOW_OPERATION_INFORMER_H
#define SUPPORT_SLOW_OPERATION_INFORMER_H
#ifndef LLVM_SUPPORT_SLOW_OPERATION_INFORMER_H
#define LLVM_SUPPORT_SLOW_OPERATION_INFORMER_H
#include <string>
#include <cassert>

View File

@ -12,8 +12,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef SYSTEMUTILS_H
#define SYSTEMUTILS_H
#ifndef LLVM_SUPPORT_SYSTEMUTILS_H
#define LLVM_SUPPORT_SYSTEMUTILS_H
#include <string>

View File

@ -1,4 +1,4 @@
//===-- Support/ThreadSupport-NoSupport.h - Generic impl --------*- C++ -*-===//
//===-- llvm/Support/ThreadSupport-NoSupport.h - Generic Impl ---*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -16,7 +16,7 @@
// Users should never #include this file directly! As such, no include guards
// are needed.
#ifndef SUPPORT_THREADSUPPORT_H
#ifndef LLVM_SUPPORT_THREADSUPPORT_H
#error "Code should not #include Support/ThreadSupport-NoSupport.h directly!"
#endif

View File

@ -1,4 +1,4 @@
//===-- Support/ThreadSupport-PThreads.h - PThreads support -----*- C++ -*-===//
//===-- llvm/Support/ThreadSupport-PThreads.h - PThreads support *- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -15,7 +15,7 @@
// Users should never #include this file directly! As such, no include guards
// are needed.
#ifndef SUPPORT_THREADSUPPORT_H
#ifndef LLVM_SUPPORT_THREADSUPPORT_H
#error "Code should not #include Support/ThreadSupport/PThreads.h directly!"
#endif

View File

@ -18,9 +18,9 @@
#define SUPPORT_THREADSUPPORT_H
#if @HAVE_PTHREAD_MUTEX_LOCK@
#include "Support/ThreadSupport-PThreads.h"
#include "llvm/Support/ThreadSupport-PThreads.h"
#else
#include "Support/ThreadSupport-NoSupport.h"
#include "llvm/Support/ThreadSupport-NoSupport.h"
#endif // If no system support is available
namespace llvm {

View File

@ -1,4 +1,4 @@
//===-- Support/Timer.h - Interval Timing Support ---------------*- C++ -*-===//
//===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -12,8 +12,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_TIMER_H
#define SUPPORT_TIMER_H
#ifndef LLVM_SUPPORT_TIMER_H
#define LLVM_SUPPORT_TIMER_H
#include <string>
#include <vector>

View File

@ -1,4 +1,4 @@
//===-- Support/ToolRunner.h ------------------------------------*- C++ -*-===//
//===-- llvm/Support/ToolRunner.h -------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -14,10 +14,10 @@
//
//===----------------------------------------------------------------------===//
#ifndef TOOLRUNNER_H
#define TOOLRUNNER_H
#ifndef LLVM_SUPPORT_TOOLRUNNER_H
#define LLVM_SUPPORT_TOOLRUNNER_H
#include "Support/SystemUtils.h"
#include "llvm/Support/SystemUtils.h"
#include <exception>
#include <vector>

View File

@ -1,4 +1,4 @@
//===- Support/TypeInfo.h - Support class for type_info objects -*- C++ -*-===//
//===- llvm/Support/TypeInfo.h - Support for type_info objects -*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -13,8 +13,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_TYPEINFO_H
#define SUPPORT_TYPEINFO_H
#ifndef LLVM_SUPPORT_TYPEINFO_H
#define LLVM_SUPPORT_TYPEINFO_H
#include <typeinfo>

View File

@ -1,4 +1,4 @@
//===- Support/type_traits.h - Simplfied type traits ------------*- C++ -*-===//
//===- llvm/Support/type_traits.h - Simplfied type traits -------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//

View File

@ -21,7 +21,7 @@
#define LLVM_TARGET_TARGETDATA_H
#include "llvm/Pass.h"
#include "Support/DataTypes.h"
#include "llvm/Support/DataTypes.h"
#include <vector>
#include <string>

View File

@ -15,7 +15,7 @@
#define LLVM_TARGET_TARGETINSTRINFO_H
#include "llvm/CodeGen/MachineBasicBlock.h"
#include "Support/DataTypes.h"
#include "llvm/Support/DataTypes.h"
#include <vector>
#include <cassert>

View File

@ -17,7 +17,7 @@
#ifndef LLVM_TARGET_TARGETMACHINEREGISTRY_H
#define LLVM_TARGET_TARGETMACHINEREGISTRY_H
#include "Support/CommandLine.h"
#include "llvm/Support/CommandLine.h"
namespace llvm {
class Module;

View File

@ -17,7 +17,7 @@
#define LLVM_TARGET_TARGETSCHEDINFO_H
#include "llvm/Target/TargetInstrInfo.h"
#include "Support/hash_map"
#include "llvm/ADT/hash_map"
#include <string>
namespace llvm {

View File

@ -35,9 +35,9 @@
#define LLVM_TYPE_H
#include "AbstractTypeUser.h"
#include "Support/Casting.h"
#include "Support/GraphTraits.h"
#include "Support/iterator"
#include "llvm/Support/Casting.h"
#include "llvm/ADT/GraphTraits.h"
#include "llvm/ADT/iterator"
#include <vector>
namespace llvm {

View File

@ -16,7 +16,7 @@
#ifndef LLVM_USE_H
#define LLVM_USE_H
#include "Support/ilist"
#include "llvm/ADT/ilist"
namespace llvm {

View File

@ -19,7 +19,7 @@
#include "llvm/AbstractTypeUser.h"
#include "llvm/Use.h"
#include "Support/Casting.h"
#include "llvm/Support/Casting.h"
#include <string>
namespace llvm {

View File

@ -24,7 +24,7 @@
#include "llvm/Analysis/AliasAnalysis.h"
#include "llvm/Assembly/Writer.h"
#include "llvm/Support/InstIterator.h"
#include "Support/CommandLine.h"
#include "llvm/Support/CommandLine.h"
#include <iostream>
#include <set>

View File

@ -23,7 +23,7 @@
#include "llvm/Analysis/CFGPrinter.h"
#include "llvm/Assembly/Writer.h"
#include "llvm/Support/CFG.h"
#include "Support/GraphWriter.h"
#include "llvm/Support/GraphWriter.h"
#include <sstream>
#include <fstream>
using namespace llvm;

View File

@ -16,8 +16,8 @@
#include "llvm/Analysis/DataStructure/DataStructure.h"
#include "llvm/Module.h"
#include "Support/Statistic.h"
#include "Support/Debug.h"
#include "llvm/ADT/Statistic.h"
#include "llvm/Support/Debug.h"
#include "DSCallSiteIterator.h"
using namespace llvm;

View File

@ -16,10 +16,10 @@
#include "llvm/Analysis/DataStructure/DataStructure.h"
#include "llvm/Module.h"
#include "llvm/Analysis/DataStructure/DSGraph.h"
#include "Support/Debug.h"
#include "Support/SCCIterator.h"
#include "Support/Statistic.h"
#include "Support/STLExtras.h"
#include "llvm/Support/Debug.h"
#include "llvm/ADT/SCCIterator.h"
#include "llvm/ADT/Statistic.h"
#include "llvm/ADT/STLExtras.h"
using namespace llvm;
namespace {

View File

@ -18,12 +18,12 @@
#include "llvm/DerivedTypes.h"
#include "llvm/Target/TargetData.h"
#include "llvm/Assembly/Writer.h"
#include "Support/CommandLine.h"
#include "Support/Debug.h"
#include "Support/DepthFirstIterator.h"
#include "Support/STLExtras.h"
#include "Support/Statistic.h"
#include "Support/Timer.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Debug.h"
#include "llvm/ADT/DepthFirstIterator.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/Statistic.h"
#include "llvm/Support/Timer.h"
#include <algorithm>
using namespace llvm;

View File

@ -16,7 +16,7 @@
#include "llvm/Analysis/DataStructure/DSGraph.h"
#include "llvm/Module.h"
#include "llvm/Constant.h"
#include "Support/Statistic.h"
#include "llvm/ADT/Statistic.h"
using namespace llvm;
namespace {

View File

@ -17,7 +17,7 @@
#include "llvm/Instructions.h"
#include "llvm/Pass.h"
#include "llvm/Support/InstVisitor.h"
#include "Support/Statistic.h"
#include "llvm/ADT/Statistic.h"
#include <vector>
using namespace llvm;

View File

@ -24,7 +24,7 @@
#ifndef LLVM_ANALYSIS_DEPENDENCEGRAPH_H
#define LLVM_ANALYSIS_DEPENDENCEGRAPH_H
#include "Support/hash_map"
#include "llvm/ADT/hash_map"
#include <cassert>
#include <iosfwd>
#include <utility>

Some files were not shown because too many files have changed in this diff Show More