summaryrefslogtreecommitdiff
path: root/examples/Fibonacci
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2014-01-13 09:53:45 +0000
committerChandler Carruth <chandlerc@gmail.com>2014-01-13 09:53:45 +0000
commit098dd808c14a010792d7fde5fe63d5231665305c (patch)
tree2d361a37a3fc923d1e11745a0bda2edbbd9d14a4 /examples/Fibonacci
parent37446cb130fc232be62f4e057f16f9cc434e51ec (diff)
downloadllvm-098dd808c14a010792d7fde5fe63d5231665305c.tar.gz
llvm-098dd808c14a010792d7fde5fe63d5231665305c.tar.bz2
llvm-098dd808c14a010792d7fde5fe63d5231665305c.tar.xz
[cleanup] Fix the includes in the examples for r199082.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199087 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples/Fibonacci')
-rw-r--r--examples/Fibonacci/fibonacci.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/Fibonacci/fibonacci.cpp b/examples/Fibonacci/fibonacci.cpp
index 8cbf7d159f..76264b6513 100644
--- a/examples/Fibonacci/fibonacci.cpp
+++ b/examples/Fibonacci/fibonacci.cpp
@@ -23,7 +23,7 @@
//
//===----------------------------------------------------------------------===//
-#include "llvm/Analysis/Verifier.h"
+#include "llvm/IR/Verifier.h"
#include "llvm/ExecutionEngine/GenericValue.h"
#include "llvm/ExecutionEngine/Interpreter.h"
#include "llvm/ExecutionEngine/JIT.h"