diff --git a/include/Support/Alloca.h b/include/Support/Alloca.h index 3c163ed0d66..a56e874c755 100644 --- a/include/Support/Alloca.h +++ b/include/Support/Alloca.h @@ -6,8 +6,8 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_SUPPORT_ALLOCA_H -#define LLVM_SUPPORT_ALLOCA_H +#ifndef SUPPORT_ALLOCA_H +#define SUPPORT_ALLOCA_H // TODO: Determine HAVE_ALLOCA_H based on autoconf results. // The following method is too brittle. @@ -27,4 +27,4 @@ #include #endif -#endif /* LLVM_SUPPORT_ALLOCA_H */ +#endif /* SUPPORT_ALLOCA_H */ diff --git a/include/Support/BitSetVector.h b/include/Support/BitSetVector.h index 6ce56be4d0c..2200df746f3 100644 --- a/include/Support/BitSetVector.h +++ b/include/Support/BitSetVector.h @@ -23,8 +23,8 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_SUPPORT_BITVECTORSET_H -#define LLVM_SUPPORT_BITVECTORSET_H +#ifndef SUPPORT_BITSETVECTOR_H +#define SUPPORT_BITSETVECTOR_H #include #include diff --git a/include/Support/CommandLine.h b/include/Support/CommandLine.h index b524c977f7c..728bb146783 100644 --- a/include/Support/CommandLine.h +++ b/include/Support/CommandLine.h @@ -10,8 +10,8 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_SUPPORT_COMMANDLINE_H -#define LLVM_SUPPORT_COMMANDLINE_H +#ifndef SUPPORT_COMMANDLINE_H +#define SUPPORT_COMMANDLINE_H #include #include diff --git a/include/Support/DataTypes.h b/include/Support/DataTypes.h index 8a8952fb4ed..80543c61404 100644 --- a/include/Support/DataTypes.h +++ b/include/Support/DataTypes.h @@ -16,8 +16,8 @@ // TODO: This file sucks. Not only does it not work, but this stuff should be // autoconfiscated anyways. Major FIXME -#ifndef LLVM_SUPPORT_DATATYPES_H -#define LLVM_SUPPORT_DATATYPES_H +#ifndef SUPPORT_DATATYPES_H +#define SUPPORT_DATATYPES_H #define __STDC_LIMIT_MACROS 1 #include @@ -82,4 +82,4 @@ #error "include/Support/DataTypes.h could not determine endianness!" #endif -#endif /* LLVM_SUPPORT_DATATYPES_H */ +#endif /* SUPPORT_DATATYPES_H */ diff --git a/include/Support/DepthFirstIterator.h b/include/Support/DepthFirstIterator.h index 7ae4b9dc6ff..b4a1b2969f5 100644 --- a/include/Support/DepthFirstIterator.h +++ b/include/Support/DepthFirstIterator.h @@ -5,8 +5,8 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_SUPPORT_DEPTH_FIRST_ITERATOR_H -#define LLVM_SUPPORT_DEPTH_FIRST_ITERATOR_H +#ifndef SUPPORT_DEPTHFIRSTITERATOR_H +#define SUPPORT_DEPTHFIRSTITERATOR_H #include "Support/GraphTraits.h" #include "Support/iterator" diff --git a/include/Support/EquivalenceClasses.h b/include/Support/EquivalenceClasses.h index 47da34b62cd..96cfc87a725 100644 --- a/include/Support/EquivalenceClasses.h +++ b/include/Support/EquivalenceClasses.h @@ -8,8 +8,8 @@ // //===------------------------------------------------------------------===// -#ifndef LLVM_SUPPORT_EQUIVALENCE_CLASSES_H -#define LLVM_SUPPORT_EQUIVALENCE_CLASSES_H +#ifndef SUPPORT_EQUIVALENCECLASSES_H +#define SUPPORT_EQUIVALENCECLASSES_H #include #include diff --git a/include/Support/GraphTraits.h b/include/Support/GraphTraits.h index 754e38fa7f5..15c285da170 100644 --- a/include/Support/GraphTraits.h +++ b/include/Support/GraphTraits.h @@ -8,8 +8,8 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_SUPPORT_GRAPH_TRAITS_H -#define LLVM_SUPPORT_GRAPH_TRAITS_H +#ifndef SUPPORT_GRAPHTRAITS_H +#define SUPPORT_GRAPHTRAITS_H // GraphTraits - This class should be specialized by different graph types... // which is why the default version is empty. diff --git a/include/Support/HashExtras.h b/include/Support/HashExtras.h index 68a49eac9e9..f644cbd22bd 100644 --- a/include/Support/HashExtras.h +++ b/include/Support/HashExtras.h @@ -7,8 +7,8 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_SUPPORT_HASHEXTRAS_H -#define LLVM_SUPPORT_HASHEXTRAS_H +#ifndef SUPPORT_HASHEXTRAS_H +#define SUPPORT_HASHEXTRAS_H #include #include "Support/hash_map" diff --git a/include/Support/LeakDetector.h b/include/Support/LeakDetector.h index dadbac1efa4..4c682be500f 100644 --- a/include/Support/LeakDetector.h +++ b/include/Support/LeakDetector.h @@ -12,8 +12,8 @@ // //===----------------------------------------------------------------------===// -#ifndef SUPPORT_LEAK_DETECTOR_H -#define SUPPORT_LEAK_DETECTOR_H +#ifndef SUPPORT_LEAKDETECTOR_H +#define SUPPORT_LEAKDETECTOR_H #include class Value; diff --git a/include/Support/MathExtras.h b/include/Support/MathExtras.h index d73394149ba..bfb88552bf5 100644 --- a/include/Support/MathExtras.h +++ b/include/Support/MathExtras.h @@ -4,8 +4,8 @@ // //===----------------------------------------------------------------------===// -#ifndef SUPPORT_MATH_EXTRAS_H -#define SUPPORT_MATH_EXTRAS_H +#ifndef SUPPORT_MATHEXTRAS_H +#define SUPPORT_MATHEXTRAS_H #include "Support/DataTypes.h" diff --git a/include/Support/NonCopyable.h b/include/Support/NonCopyable.h index 82f3c1a760d..f13b7ce9da8 100644 --- a/include/Support/NonCopyable.h +++ b/include/Support/NonCopyable.h @@ -9,8 +9,8 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_SUPPORT_NONCOPYABLE_H -#define LLVM_SUPPORT_NONCOPYABLE_H +#ifndef SUPPORT_NONCOPYABLE_H +#define SUPPORT_NONCOPYABLE_H class NonCopyable { // Disable the copy constructor and the assignment operator diff --git a/include/Support/PostOrderIterator.h b/include/Support/PostOrderIterator.h index 4c19e7ac361..084d38fd9df 100644 --- a/include/Support/PostOrderIterator.h +++ b/include/Support/PostOrderIterator.h @@ -6,8 +6,8 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_SUPPORT_POSTORDER_ITERATOR_H -#define LLVM_SUPPORT_POSTORDER_ITERATOR_H +#ifndef SUPPORT_POSTORDERITERATOR_H +#define SUPPORT_POSTORDERITERATOR_H #include "Support/GraphTraits.h" #include "Support/iterator" diff --git a/include/Support/SCCIterator.h b/include/Support/SCCIterator.h index ed660d64c72..b7037701e06 100644 --- a/include/Support/SCCIterator.h +++ b/include/Support/SCCIterator.h @@ -11,8 +11,8 @@ // (NOTE: This requires some simple wrappers and is not supported yet.) //===----------------------------------------------------------------------===// -#ifndef LLVM_SUPPORT_TARJANSCC_ITERATOR_H -#define LLVM_SUPPORT_TARJANSCC_ITERATOR_H +#ifndef SUPPORT_TARJANSCCITERATOR_H +#define SUPPORT_TARJANSCCITERATOR_H #include "Support/GraphTraits.h" #include diff --git a/include/Support/STLExtras.h b/include/Support/STLExtras.h index b2fde436372..348c4e17aac 100644 --- a/include/Support/STLExtras.h +++ b/include/Support/STLExtras.h @@ -7,8 +7,8 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_SUPPORT_STL_EXTRAS_H -#define LLVM_SUPPORT_STL_EXTRAS_H +#ifndef SUPPORT_STLEXTRAS_H +#define SUPPORT_STLEXTRAS_H #include #include "Support/iterator" diff --git a/include/Support/SetOperations.h b/include/Support/SetOperations.h index d79d3863804..3a5e6f2bd46 100644 --- a/include/Support/SetOperations.h +++ b/include/Support/SetOperations.h @@ -5,8 +5,8 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_SUPPORT_SET_OPERATIONS_H -#define LLVM_SUPPORT_SET_OPERATIONS_H +#ifndef SUPPORT_SETOPERATIONS_H +#define SUPPORT_SETOPERATIONS_H // set_union(A, B) - Compute A := A u B, return whether A changed. // diff --git a/include/Support/StringExtras.h b/include/Support/StringExtras.h index 529d86caa20..924f6c35f87 100644 --- a/include/Support/StringExtras.h +++ b/include/Support/StringExtras.h @@ -4,8 +4,8 @@ // //===----------------------------------------------------------------------===// -#ifndef SUPPORT_STRING_EXTRAS_H -#define SUPPORT_STRING_EXTRAS_H +#ifndef SUPPORT_STRINGEXTRAS_H +#define SUPPORT_STRINGEXTRAS_H #include "Support/DataTypes.h" #include diff --git a/include/Support/Tree.h b/include/Support/Tree.h index 544e57e5263..9979caaf312 100644 --- a/include/Support/Tree.h +++ b/include/Support/Tree.h @@ -5,8 +5,8 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_SUPPORT_TREE_H -#define LLVM_SUPPORT_TREE_H +#ifndef SUPPORT_TREE_H +#define SUPPORT_TREE_H #include diff --git a/include/Support/TypeInfo.h b/include/Support/TypeInfo.h index 29f4e22a991..9884f65e691 100644 --- a/include/Support/TypeInfo.h +++ b/include/Support/TypeInfo.h @@ -6,8 +6,8 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_SUPPORT_TYPEINFO_H -#define LLVM_SUPPORT_TYPEINFO_H +#ifndef SUPPORT_TYPEINFO_H +#define SUPPORT_TYPEINFO_H #include diff --git a/include/Support/hash_map b/include/Support/hash_map index dc905da4101..3c50e4b13fd 100644 --- a/include/Support/hash_map +++ b/include/Support/hash_map @@ -7,8 +7,8 @@ // //===----------------------------------------------------------------------===// -#ifndef SUPPORT_HASHMAP_H -#define SUPPORT_HASHMAP_H +#ifndef SUPPORT_HASH_MAP +#define SUPPORT_HASH_MAP // Compiler Support Matrix // diff --git a/include/Support/hash_set b/include/Support/hash_set index 4bd91ab241f..72c20ce2355 100644 --- a/include/Support/hash_set +++ b/include/Support/hash_set @@ -7,8 +7,8 @@ // //===----------------------------------------------------------------------===// -#ifndef SUPPORT_HASHSET_H -#define SUPPORT_HASHSET_H +#ifndef SUPPORT_HASH_SET +#define SUPPORT_HASH_SET // Compiler Support Matrix // diff --git a/include/Support/ilist b/include/Support/ilist index 1d868f8a4a4..ce906ba559c 100644 --- a/include/Support/ilist +++ b/include/Support/ilist @@ -28,8 +28,8 @@ // //===----------------------------------------------------------------------===// -#ifndef INCLUDED_SUPPORT_ILIST -#define INCLUDED_SUPPORT_ILIST +#ifndef SUPPORT_ILIST +#define SUPPORT_ILIST #include #include diff --git a/include/Support/iterator b/include/Support/iterator index 46cf9679369..444f5ab152b 100644 --- a/include/Support/iterator +++ b/include/Support/iterator @@ -16,8 +16,8 @@ // //===----------------------------------------------------------------------===// -#ifndef SUPPORT_ITERATOR_H -#define SUPPORT_ITERATOR_H +#ifndef SUPPORT_ITERATOR +#define SUPPORT_ITERATOR #include diff --git a/include/Support/slist b/include/Support/slist index 4f723df761c..71670e6af29 100644 --- a/include/Support/slist +++ b/include/Support/slist @@ -7,8 +7,8 @@ // //===----------------------------------------------------------------------===// -#ifndef SUPPORT_SLIST_H -#define SUPPORT_SLIST_H +#ifndef SUPPORT_SLIST +#define SUPPORT_SLIST // Compiler Support Matrix // diff --git a/include/llvm/ADT/BitSetVector.h b/include/llvm/ADT/BitSetVector.h index 6ce56be4d0c..2200df746f3 100644 --- a/include/llvm/ADT/BitSetVector.h +++ b/include/llvm/ADT/BitSetVector.h @@ -23,8 +23,8 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_SUPPORT_BITVECTORSET_H -#define LLVM_SUPPORT_BITVECTORSET_H +#ifndef SUPPORT_BITSETVECTOR_H +#define SUPPORT_BITSETVECTOR_H #include #include diff --git a/include/llvm/ADT/DepthFirstIterator.h b/include/llvm/ADT/DepthFirstIterator.h index 7ae4b9dc6ff..b4a1b2969f5 100644 --- a/include/llvm/ADT/DepthFirstIterator.h +++ b/include/llvm/ADT/DepthFirstIterator.h @@ -5,8 +5,8 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_SUPPORT_DEPTH_FIRST_ITERATOR_H -#define LLVM_SUPPORT_DEPTH_FIRST_ITERATOR_H +#ifndef SUPPORT_DEPTHFIRSTITERATOR_H +#define SUPPORT_DEPTHFIRSTITERATOR_H #include "Support/GraphTraits.h" #include "Support/iterator" diff --git a/include/llvm/ADT/EquivalenceClasses.h b/include/llvm/ADT/EquivalenceClasses.h index 47da34b62cd..96cfc87a725 100644 --- a/include/llvm/ADT/EquivalenceClasses.h +++ b/include/llvm/ADT/EquivalenceClasses.h @@ -8,8 +8,8 @@ // //===------------------------------------------------------------------===// -#ifndef LLVM_SUPPORT_EQUIVALENCE_CLASSES_H -#define LLVM_SUPPORT_EQUIVALENCE_CLASSES_H +#ifndef SUPPORT_EQUIVALENCECLASSES_H +#define SUPPORT_EQUIVALENCECLASSES_H #include #include diff --git a/include/llvm/ADT/GraphTraits.h b/include/llvm/ADT/GraphTraits.h index 754e38fa7f5..15c285da170 100644 --- a/include/llvm/ADT/GraphTraits.h +++ b/include/llvm/ADT/GraphTraits.h @@ -8,8 +8,8 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_SUPPORT_GRAPH_TRAITS_H -#define LLVM_SUPPORT_GRAPH_TRAITS_H +#ifndef SUPPORT_GRAPHTRAITS_H +#define SUPPORT_GRAPHTRAITS_H // GraphTraits - This class should be specialized by different graph types... // which is why the default version is empty. diff --git a/include/llvm/ADT/HashExtras.h b/include/llvm/ADT/HashExtras.h index 68a49eac9e9..f644cbd22bd 100644 --- a/include/llvm/ADT/HashExtras.h +++ b/include/llvm/ADT/HashExtras.h @@ -7,8 +7,8 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_SUPPORT_HASHEXTRAS_H -#define LLVM_SUPPORT_HASHEXTRAS_H +#ifndef SUPPORT_HASHEXTRAS_H +#define SUPPORT_HASHEXTRAS_H #include #include "Support/hash_map" diff --git a/include/llvm/ADT/PostOrderIterator.h b/include/llvm/ADT/PostOrderIterator.h index 4c19e7ac361..084d38fd9df 100644 --- a/include/llvm/ADT/PostOrderIterator.h +++ b/include/llvm/ADT/PostOrderIterator.h @@ -6,8 +6,8 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_SUPPORT_POSTORDER_ITERATOR_H -#define LLVM_SUPPORT_POSTORDER_ITERATOR_H +#ifndef SUPPORT_POSTORDERITERATOR_H +#define SUPPORT_POSTORDERITERATOR_H #include "Support/GraphTraits.h" #include "Support/iterator" diff --git a/include/llvm/ADT/SCCIterator.h b/include/llvm/ADT/SCCIterator.h index ed660d64c72..b7037701e06 100644 --- a/include/llvm/ADT/SCCIterator.h +++ b/include/llvm/ADT/SCCIterator.h @@ -11,8 +11,8 @@ // (NOTE: This requires some simple wrappers and is not supported yet.) //===----------------------------------------------------------------------===// -#ifndef LLVM_SUPPORT_TARJANSCC_ITERATOR_H -#define LLVM_SUPPORT_TARJANSCC_ITERATOR_H +#ifndef SUPPORT_TARJANSCCITERATOR_H +#define SUPPORT_TARJANSCCITERATOR_H #include "Support/GraphTraits.h" #include diff --git a/include/llvm/ADT/STLExtras.h b/include/llvm/ADT/STLExtras.h index b2fde436372..348c4e17aac 100644 --- a/include/llvm/ADT/STLExtras.h +++ b/include/llvm/ADT/STLExtras.h @@ -7,8 +7,8 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_SUPPORT_STL_EXTRAS_H -#define LLVM_SUPPORT_STL_EXTRAS_H +#ifndef SUPPORT_STLEXTRAS_H +#define SUPPORT_STLEXTRAS_H #include #include "Support/iterator" diff --git a/include/llvm/ADT/SetOperations.h b/include/llvm/ADT/SetOperations.h index d79d3863804..3a5e6f2bd46 100644 --- a/include/llvm/ADT/SetOperations.h +++ b/include/llvm/ADT/SetOperations.h @@ -5,8 +5,8 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_SUPPORT_SET_OPERATIONS_H -#define LLVM_SUPPORT_SET_OPERATIONS_H +#ifndef SUPPORT_SETOPERATIONS_H +#define SUPPORT_SETOPERATIONS_H // set_union(A, B) - Compute A := A u B, return whether A changed. // diff --git a/include/llvm/ADT/StringExtras.h b/include/llvm/ADT/StringExtras.h index 529d86caa20..924f6c35f87 100644 --- a/include/llvm/ADT/StringExtras.h +++ b/include/llvm/ADT/StringExtras.h @@ -4,8 +4,8 @@ // //===----------------------------------------------------------------------===// -#ifndef SUPPORT_STRING_EXTRAS_H -#define SUPPORT_STRING_EXTRAS_H +#ifndef SUPPORT_STRINGEXTRAS_H +#define SUPPORT_STRINGEXTRAS_H #include "Support/DataTypes.h" #include diff --git a/include/llvm/ADT/Tree.h b/include/llvm/ADT/Tree.h index 544e57e5263..9979caaf312 100644 --- a/include/llvm/ADT/Tree.h +++ b/include/llvm/ADT/Tree.h @@ -5,8 +5,8 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_SUPPORT_TREE_H -#define LLVM_SUPPORT_TREE_H +#ifndef SUPPORT_TREE_H +#define SUPPORT_TREE_H #include diff --git a/include/llvm/ADT/ilist b/include/llvm/ADT/ilist index 1d868f8a4a4..ce906ba559c 100644 --- a/include/llvm/ADT/ilist +++ b/include/llvm/ADT/ilist @@ -28,8 +28,8 @@ // //===----------------------------------------------------------------------===// -#ifndef INCLUDED_SUPPORT_ILIST -#define INCLUDED_SUPPORT_ILIST +#ifndef SUPPORT_ILIST +#define SUPPORT_ILIST #include #include diff --git a/include/llvm/Support/CommandLine.h b/include/llvm/Support/CommandLine.h index b524c977f7c..728bb146783 100644 --- a/include/llvm/Support/CommandLine.h +++ b/include/llvm/Support/CommandLine.h @@ -10,8 +10,8 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_SUPPORT_COMMANDLINE_H -#define LLVM_SUPPORT_COMMANDLINE_H +#ifndef SUPPORT_COMMANDLINE_H +#define SUPPORT_COMMANDLINE_H #include #include diff --git a/include/llvm/Support/LeakDetector.h b/include/llvm/Support/LeakDetector.h index dadbac1efa4..4c682be500f 100644 --- a/include/llvm/Support/LeakDetector.h +++ b/include/llvm/Support/LeakDetector.h @@ -12,8 +12,8 @@ // //===----------------------------------------------------------------------===// -#ifndef SUPPORT_LEAK_DETECTOR_H -#define SUPPORT_LEAK_DETECTOR_H +#ifndef SUPPORT_LEAKDETECTOR_H +#define SUPPORT_LEAKDETECTOR_H #include class Value; diff --git a/include/llvm/Support/MathExtras.h b/include/llvm/Support/MathExtras.h index d73394149ba..bfb88552bf5 100644 --- a/include/llvm/Support/MathExtras.h +++ b/include/llvm/Support/MathExtras.h @@ -4,8 +4,8 @@ // //===----------------------------------------------------------------------===// -#ifndef SUPPORT_MATH_EXTRAS_H -#define SUPPORT_MATH_EXTRAS_H +#ifndef SUPPORT_MATHEXTRAS_H +#define SUPPORT_MATHEXTRAS_H #include "Support/DataTypes.h" diff --git a/include/llvm/Support/TypeInfo.h b/include/llvm/Support/TypeInfo.h index 29f4e22a991..9884f65e691 100644 --- a/include/llvm/Support/TypeInfo.h +++ b/include/llvm/Support/TypeInfo.h @@ -6,8 +6,8 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_SUPPORT_TYPEINFO_H -#define LLVM_SUPPORT_TYPEINFO_H +#ifndef SUPPORT_TYPEINFO_H +#define SUPPORT_TYPEINFO_H #include