aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Topper <craig.topper@gmail.com>2012-09-15 18:41:37 +0000
committerCraig Topper <craig.topper@gmail.com>2012-09-15 18:41:37 +0000
commitdfa997992b16bbea02ac5102efd91f496b27cbb7 (patch)
tree87af9cf1976af7a403d7c5e0f4bcd9ead35911a6
parent86a1c32e67b23c5e9e42dff9eb86e99ba15bb42f (diff)
Fix a couple include directives that used angle brackets for llvm files.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163978 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/DefaultPasses.h2
-rw-r--r--include/llvm/Support/LEB128.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/DefaultPasses.h b/include/llvm/DefaultPasses.h
index 929569d543..9f1ade86ab 100644
--- a/include/llvm/DefaultPasses.h
+++ b/include/llvm/DefaultPasses.h
@@ -14,7 +14,7 @@
#ifndef LLVM_DEFAULT_PASS_SUPPORT_H
#define LLVM_DEFAULT_PASS_SUPPORT_H
-#include <llvm/PassSupport.h>
+#include "llvm/PassSupport.h"
namespace llvm {
diff --git a/include/llvm/Support/LEB128.h b/include/llvm/Support/LEB128.h
index 410edd4dc7..b52e5bc9ad 100644
--- a/include/llvm/Support/LEB128.h
+++ b/include/llvm/Support/LEB128.h
@@ -15,7 +15,7 @@
#ifndef LLVM_SYSTEM_LEB128_H
#define LLVM_SYSTEM_LEB128_H
-#include <llvm/Support/raw_ostream.h>
+#include "llvm/Support/raw_ostream.h"
namespace llvm {