summaryrefslogtreecommitdiffstats
path: root/recipes-core/llvm/llvm2.8/0019-issue6065.patch
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2013-04-19 12:19:27 +0000
committerHenning Heinold <heinold@inf.fu-berlin.de>2013-04-23 08:41:46 +0200
commit798b0c58baeb339379bf65d4b9fb0a2c9a47a9f3 (patch)
treeee2ff075b7aac2e86acd89bac6e9d1b7efc8d03e /recipes-core/llvm/llvm2.8/0019-issue6065.patch
parentcbef0d81569f3b27a69877f5e2e512dc729b224a (diff)
downloadmeta-java-798b0c58baeb339379bf65d4b9fb0a2c9a47a9f3.tar.gz
llvm: Drop from meta-java, it was moved to meta-oe
Signed-off-by: Henning Heinold <heinold@inf.fu-berlin.de>
Diffstat (limited to 'recipes-core/llvm/llvm2.8/0019-issue6065.patch')
-rw-r--r--recipes-core/llvm/llvm2.8/0019-issue6065.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/recipes-core/llvm/llvm2.8/0019-issue6065.patch b/recipes-core/llvm/llvm2.8/0019-issue6065.patch
deleted file mode 100644
index a7f7bbe..0000000
--- a/recipes-core/llvm/llvm2.8/0019-issue6065.patch
+++ /dev/null
@@ -1,20 +0,0 @@
1---
2 ARMJITInfo.cpp | 6 ++++++
3 1 file changed, 6 insertions(+)
4
5--- a/lib/Target/ARM/ARMJITInfo.cpp
6+++ b/lib/Target/ARM/ARMJITInfo.cpp
7@@ -99,7 +99,13 @@
8 // The above twiddling of the saved return addresses allows us to
9 // deallocate everything, including the LR the stub saved, all in one
10 // pop instruction.
11+#ifndef __thumb__
12 "ldmia sp!, {r0, r1, r2, r3, lr, pc}\n"
13+#else
14+ // thumb dont allow lr and pc to be poped in the same instruction.
15+ "pop {r0, r1, r2, r3, lr}\n"
16+ "pop {pc}\n"
17+#endif
18 );
19 #else // Not an ARM host
20 void ARMCompilationCallback() {