Deleted Added
full compact
trampoline_setup.c (229135) trampoline_setup.c (229413)
1/* ===----- trampoline_setup.c - Implement __trampoline_setup -------------===
2 *
3 * The LLVM Compiler Infrastructure
4 *
5 * This file is dual licensed under the MIT and the University of Illinois Open
6 * Source Licenses. See LICENSE.TXT for details.
7 *
8 * ===----------------------------------------------------------------------===

--- 30 unchanged lines hidden (view full) ---

39 trampOnStack[6] = 0x7c0803a6; /* mtlr r0 */
40 trampOnStack[7] = 0x7d8903a6; /* mtctr r12 */
41 trampOnStack[8] = 0x816b0004; /* lwz r11,4(r11) */
42 trampOnStack[9] = 0x4e800420; /* bctr */
43
44 /* clear instruction cache */
45 __clear_cache(trampOnStack, &trampOnStack[10]);
46}
1/* ===----- trampoline_setup.c - Implement __trampoline_setup -------------===
2 *
3 * The LLVM Compiler Infrastructure
4 *
5 * This file is dual licensed under the MIT and the University of Illinois Open
6 * Source Licenses. See LICENSE.TXT for details.
7 *
8 * ===----------------------------------------------------------------------===

--- 30 unchanged lines hidden (view full) ---

39 trampOnStack[6] = 0x7c0803a6; /* mtlr r0 */
40 trampOnStack[7] = 0x7d8903a6; /* mtctr r12 */
41 trampOnStack[8] = 0x816b0004; /* lwz r11,4(r11) */
42 trampOnStack[9] = 0x4e800420; /* bctr */
43
44 /* clear instruction cache */
45 __clear_cache(trampOnStack, &trampOnStack[10]);
46}
47#endif /* __ppc__ */
47#endif /* __ppc__ && !defined(__powerpc64__) */