mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-11 09:56:22 +00:00
Make the entry point padding code logic looks nicer
This commit is contained in:
parent
73ab2f6a68
commit
f02a1ed427
@ -300,7 +300,8 @@ int main(int argc, char **argv)
|
|||||||
entry->inst_offset = inst_offset;
|
entry->inst_offset = inst_offset;
|
||||||
entry1 = entry->next;
|
entry1 = entry->next;
|
||||||
if (entry1 && entry1->islabel && is_entry_point(entry1->string)) {
|
if (entry1 && entry1->islabel && is_entry_point(entry1->string)) {
|
||||||
while (((inst_offset+1) & 0x3) != 0) {
|
// insert empty instructions until (inst_offset+1) % 4 == 0
|
||||||
|
while (((inst_offset+1) % 4) != 0) {
|
||||||
tmp_entry = calloc(sizeof(*tmp_entry), 1);
|
tmp_entry = calloc(sizeof(*tmp_entry), 1);
|
||||||
entry->next = tmp_entry;
|
entry->next = tmp_entry;
|
||||||
tmp_entry->next = entry1;
|
tmp_entry->next = entry1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user