Sort includes for all of the .h files under the 'lib' tree. These were

missed in the first pass because the script didn't yet handle include
guards.

Note that the script is now able to handle all of these headers without
manual edits. =]

llvm-svn: 169224
This commit is contained in:
Chandler Carruth
2012-12-04 07:12:27 +00:00
parent 07674cb566
commit 802d755533
84 changed files with 180 additions and 183 deletions

View File

@@ -14,14 +14,14 @@
#ifndef BITCODE_READER_H
#define BITCODE_READER_H
#include "llvm/GVMaterializer.h"
#include "llvm/ADT/DenseMap.h"
#include "llvm/Attributes.h"
#include "llvm/Type.h"
#include "llvm/OperandTraits.h"
#include "llvm/Bitcode/BitstreamReader.h"
#include "llvm/Bitcode/LLVMBitCodes.h"
#include "llvm/GVMaterializer.h"
#include "llvm/OperandTraits.h"
#include "llvm/Support/ValueHandle.h"
#include "llvm/ADT/DenseMap.h"
#include "llvm/Type.h"
#include <vector>
namespace llvm {