aboutsummaryrefslogtreecommitdiffstats
path: root/docs/tutorial
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2009-03-11 20:23:40 +0000
committerGabor Greif <ggreif@gmail.com>2009-03-11 20:23:40 +0000
commit6f6aff01ab6dcdd4661950b5209f8d392777a69a (patch)
tree4452c575244941e2c3805ce60f1921e97d29570d /docs/tutorial
parente88e52e5f057f85a0a75d6804af728312ba42341 (diff)
downloadexternal_llvm-6f6aff01ab6dcdd4661950b5209f8d392777a69a.zip
external_llvm-6f6aff01ab6dcdd4661950b5209f8d392777a69a.tar.gz
external_llvm-6f6aff01ab6dcdd4661950b5209f8d392777a69a.tar.bz2
do not pretend llvm/.../*.h being system headers
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66697 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/tutorial')
-rw-r--r--docs/tutorial/JITTutorial1.html14
-rw-r--r--docs/tutorial/JITTutorial2.html12
2 files changed, 13 insertions, 13 deletions
diff --git a/docs/tutorial/JITTutorial1.html b/docs/tutorial/JITTutorial1.html
index 4aec470..b4054a1 100644
--- a/docs/tutorial/JITTutorial1.html
+++ b/docs/tutorial/JITTutorial1.html
@@ -54,13 +54,13 @@ entry:
<div class="doc_code">
<pre>
-#include &lt;llvm/Module.h&gt;
-#include &lt;llvm/Function.h&gt;
-#include &lt;llvm/PassManager.h&gt;
-#include &lt;llvm/CallingConv.h&gt;
-#include &lt;llvm/Analysis/Verifier.h&gt;
-#include &lt;llvm/Assembly/PrintModulePass.h&gt;
-#include &lt;llvm/Support/IRBuilder.h&gt;
+#include "llvm/Module.h"
+#include "llvm/Function.h"
+#include "llvm/PassManager.h"
+#include "llvm/CallingConv.h"
+#include "llvm/Analysis/Verifier.h"
+#include "llvm/Assembly/PrintModulePass.h"
+#include "llvm/Support/IRBuilder.h"
</pre>
</div>
diff --git a/docs/tutorial/JITTutorial2.html b/docs/tutorial/JITTutorial2.html
index c9adda1..3d918b0 100644
--- a/docs/tutorial/JITTutorial2.html
+++ b/docs/tutorial/JITTutorial2.html
@@ -51,12 +51,12 @@ unsigned gcd(unsigned x, unsigned y) {
<div class="doc_code">
<pre>
-#include &lt;llvm/Module.h&gt;
-#include &lt;llvm/Function.h&gt;
-#include &lt;llvm/PassManager.h&gt;
-#include &lt;llvm/Analysis/Verifier.h&gt;
-#include &lt;llvm/Assembly/PrintModulePass.h&gt;
-#include &lt;llvm/Support/IRBuilder.h&gt;
+#include "llvm/Module.h"
+#include "llvm/Function.h"
+#include "llvm/PassManager.h"
+#include "llvm/Analysis/Verifier.h"
+#include "llvm/Assembly/PrintModulePass.h"
+#include "llvm/Support/IRBuilder.h"
using namespace llvm;