Revert "foo"

This reverts commit 27d5a7bce0.

I fat fingered it, failing to reset the checkout before applying the
sequential commit.
This commit is contained in:
Emil Velikov
2017-10-30 15:32:56 +00:00
parent 6997d222f5
commit fc7816fd4e

View File

@@ -3653,21 +3653,21 @@ included_in_packed_varying(ir_variable *var, const char *name)
if (strncmp(var->name, "packed:", 7) != 0) if (strncmp(var->name, "packed:", 7) != 0)
return false; return false;
const char *token = var->name + 7; char *list = strdup(var->name + 7);
while (token) { assert(list);
const char *next_token = strchr(list, ' ');
if (next_token) {
len = token - next_token;
next_token++;
} else {
len = strlen(token);
}
if (strncmp(token, name, MAX2(len, strlen(name)) == 0)
return true;
token = next_token; bool found = false;
char *saveptr;
char *token = strtok_r(list, ",", &saveptr);
while (token) {
if (strcmp(token, name) == 0) {
found = true;
break;
}
token = strtok_r(NULL, ",", &saveptr);
} }
return false; free(list);
return found;
} }
/** /**