Alphabetized #includes.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61595 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Misha Brukman 2009-01-02 22:49:28 +00:00
parent 9ea4034e00
commit 5679d18c54
2 changed files with 3 additions and 4 deletions

View File

@ -18,8 +18,8 @@
#include "llvm/Support/MathExtras.h"
#include "llvm/Support/raw_ostream.h"
#include "llvm/Assembly/Parser.h"
#include <cstring>
#include <cstdlib>
#include <cstring>
using namespace llvm;
bool LLLexer::Error(LocTy ErrorLoc, const std::string &Msg) const {

View File

@ -17,10 +17,9 @@
#include "LLToken.h"
#include "llvm/ADT/APSInt.h"
#include "llvm/ADT/APFloat.h"
#include <vector>
#include <string>
#include <iosfwd>
#include <string>
#include <vector>
namespace llvm {
class MemoryBuffer;