We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d540665 commit 8b2de41Copy full SHA for 8b2de41
tools/objtool/include/objtool/check.h
@@ -42,9 +42,9 @@ struct instruction {
42
struct list_head call_node;
43
struct section *sec;
44
unsigned long offset;
45
- unsigned int len;
46
- enum insn_type type;
47
unsigned long immediate;
+ unsigned int len;
+ u8 type;
48
49
u16 dead_end : 1,
50
ignore : 1,
@@ -54,11 +54,11 @@ struct instruction {
54
restore : 1,
55
retpoline_safe : 1,
56
noendbr : 1,
57
- entry : 1;
58
- /* 7 bit hole */
+ entry : 1,
+ visited : 4;
59
+ /* 3 bit hole */
60
61
s8 instr;
- u8 visited;
62
63
struct alt_group *alt_group;
64
struct symbol *call_dest;
0 commit comments