summaryrefslogtreecommitdiff
path: root/tools/lli
diff options
context:
space:
mode:
authorCraig Topper <craig.topper@gmail.com>2012-09-15 18:45:38 +0000
committerCraig Topper <craig.topper@gmail.com>2012-09-15 18:45:38 +0000
commitdbf545719a22bf03403c1d0137ae0f5726f36de3 (patch)
tree81de23871823051f76e825a420db787cc09b4471 /tools/lli
parentdfa997992b16bbea02ac5102efd91f496b27cbb7 (diff)
downloadllvm-dbf545719a22bf03403c1d0137ae0f5726f36de3.tar.gz
llvm-dbf545719a22bf03403c1d0137ae0f5726f36de3.tar.bz2
llvm-dbf545719a22bf03403c1d0137ae0f5726f36de3.tar.xz
Fix includes of llvm files that used angle brackets.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163979 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/lli')
-rw-r--r--tools/lli/RemoteTarget.cpp6
-rw-r--r--tools/lli/RemoteTarget.h8
2 files changed, 7 insertions, 7 deletions
diff --git a/tools/lli/RemoteTarget.cpp b/tools/lli/RemoteTarget.cpp
index 918f1572e3..66743225db 100644
--- a/tools/lli/RemoteTarget.cpp
+++ b/tools/lli/RemoteTarget.cpp
@@ -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;
diff --git a/tools/lli/RemoteTarget.h b/tools/lli/RemoteTarget.h
index c5845266d6..d05d3c6f45 100644
--- a/tools/lli/RemoteTarget.h
+++ b/tools/lli/RemoteTarget.h
@@ -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>