Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
2 | /* | ||||
3 | * Copyright (C) 2020 IBM Corporation | ||||
4 | */ | ||||
5 | #include <asm/ppc-opcode.h> | ||||
6 | |||||
7 | .text | ||||
8 | |||||
9 | #define globl(x) \ | ||||
10 | .globl x; \ | ||||
11 | x: | ||||
12 | |||||
13 | globl(code_patching_test1) | ||||
14 | nop | ||||
15 | nop | ||||
16 | globl(end_code_patching_test1) | ||||
17 | |||||
18 | globl(code_patching_test1_expected) | ||||
19 | .long OP_PREFIX << 26 | ||||
20 | .long 0x0000000 |