diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2013-04-19 12:19:27 +0000 |
---|---|---|
committer | Henning Heinold <heinold@inf.fu-berlin.de> | 2013-04-23 08:41:46 +0200 |
commit | 798b0c58baeb339379bf65d4b9fb0a2c9a47a9f3 (patch) | |
tree | ee2ff075b7aac2e86acd89bac6e9d1b7efc8d03e /recipes-core/llvm/llvm2.8/0019-issue6065.patch | |
parent | cbef0d81569f3b27a69877f5e2e512dc729b224a (diff) | |
download | meta-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.patch | 20 |
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() { | ||