diff options
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() { | ||