Fix includes of llvm files that used angle brackets.

llvm-svn: 163979
This commit is contained in:
Craig Topper 2012-09-15 18:45:38 +00:00
parent 53d08e4f0c
commit bc40d7e023
4 changed files with 16 additions and 16 deletions

View File

@ -13,9 +13,9 @@
//===----------------------------------------------------------------------===//
#include "RemoteTarget.h"
#include <llvm/ADT/StringRef.h>
#include <llvm/Support/DataTypes.h>
#include <llvm/Support/Memory.h>
#include "llvm/ADT/StringRef.h"
#include "llvm/Support/DataTypes.h"
#include "llvm/Support/Memory.h"
#include <stdlib.h>
#include <string>
using namespace llvm;

View File

@ -15,10 +15,10 @@
#ifndef REMOTEPROCESS_H
#define REMOTEPROCESS_H
#include <llvm/ADT/StringRef.h>
#include <llvm/ADT/SmallVector.h>
#include <llvm/Support/DataTypes.h>
#include <llvm/Support/Memory.h>
#include "llvm/ADT/StringRef.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/Support/DataTypes.h"
#include "llvm/Support/Memory.h"
#include <stdlib.h>
#include <string>

View File

@ -8,7 +8,7 @@
//===----------------------------------------------------------------------===//
#include "gtest/gtest.h"
#include <llvm/ADT/DenseSet.h>
#include "llvm/ADT/DenseSet.h"
using namespace llvm;

View File

@ -7,14 +7,14 @@
//
//===----------------------------------------------------------------------===//
#include <llvm/Analysis/ScalarEvolutionExpressions.h>
#include <llvm/Analysis/LoopInfo.h>
#include <llvm/GlobalVariable.h>
#include <llvm/Constants.h>
#include <llvm/LLVMContext.h>
#include <llvm/Module.h>
#include <llvm/PassManager.h>
#include <llvm/ADT/SmallVector.h>
#include "llvm/Analysis/ScalarEvolutionExpressions.h"
#include "llvm/Analysis/LoopInfo.h"
#include "llvm/GlobalVariable.h"
#include "llvm/Constants.h"
#include "llvm/LLVMContext.h"
#include "llvm/Module.h"
#include "llvm/PassManager.h"
#include "llvm/ADT/SmallVector.h"
#include "gtest/gtest.h"
namespace llvm {