OLD | NEW |
| (Empty) |
1 @hex: | |
2 # Check that inc and dec are considered zero-extending instructions. | |
3 # inc %ecx | |
4 ff c1 \\ | |
5 # and (%rsp, %rcx, 1), %esi | |
6 23 34 0c | |
7 | |
8 # dec %ecx | |
9 ff c9 \\ | |
10 # and (%rsp, %rcx, 1), %esi | |
11 23 34 0c | |
12 @rval: | |
13 VALIDATOR: Checking jump targets: 0 to a | |
14 VALIDATOR: Checking that basic blocks are aligned | |
15 *** <input> is safe *** | |
16 @dis: | |
17 0000000000000000: ff c1 inc %ecx | |
18 0000000000000002: 23 34 0c and %esi, [%rsp
+%rcx*1] | |
19 0000000000000005: ff c9 dec %ecx | |
20 0000000000000007: 23 34 0c and %esi, [%rsp
+%rcx*1] | |
21 @rdfa_output: | |
22 return code: 0 | |
OLD | NEW |