summaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/Interpreter
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2014-03-04 10:40:04 +0000
committerChandler Carruth <chandlerc@gmail.com>2014-03-04 10:40:04 +0000
commitbd7cba0d8114059dfa3550cbe85e4c50ca77eae2 (patch)
tree5941b459d7c449f45d00302f6ab4b82ab927c5d5 /lib/ExecutionEngine/Interpreter
parent876ac60880843f37c25ec03e46eb73b8e197e971 (diff)
downloadllvm-bd7cba0d8114059dfa3550cbe85e4c50ca77eae2.tar.gz
llvm-bd7cba0d8114059dfa3550cbe85e4c50ca77eae2.tar.bz2
llvm-bd7cba0d8114059dfa3550cbe85e4c50ca77eae2.tar.xz
[Modules] Move GetElementPtrTypeIterator into the IR library. As its
name might indicate, it is an iterator over the types in an instruction in the IR.... You see where this is going. Another step of modularizing the support library. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202815 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/Interpreter')
-rw-r--r--lib/ExecutionEngine/Interpreter/Execution.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExecutionEngine/Interpreter/Execution.cpp b/lib/ExecutionEngine/Interpreter/Execution.cpp
index 8a101dfa27..8a80285f98 100644
--- a/lib/ExecutionEngine/Interpreter/Execution.cpp
+++ b/lib/ExecutionEngine/Interpreter/Execution.cpp
@@ -18,11 +18,11 @@
#include "llvm/CodeGen/IntrinsicLowering.h"
#include "llvm/IR/Constants.h"
#include "llvm/IR/DerivedTypes.h"
+#include "llvm/IR/GetElementPtrTypeIterator.h"
#include "llvm/IR/Instructions.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/ErrorHandling.h"
-#include "llvm/Support/GetElementPtrTypeIterator.h"
#include "llvm/Support/MathExtras.h"
#include <algorithm>
#include <cmath>