Rose: allow direct reports to be aliased

This commit is contained in:
Justin Viiret 2016-02-16 09:29:07 +11:00 committed by Matthew Barr
parent 6294b8a89b
commit 31dea6c275

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2015, Intel Corporation * Copyright (c) 2015-2016, Intel Corporation
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met: * modification, are permitted provided that the following conditions are met:
@ -347,13 +347,7 @@ bool isAliasingCandidate(RoseVertex v, const RoseBuildImpl &tbi) {
return false; return false;
} }
u32 id = *props.literals.begin(); assert(*props.literals.begin() != MO_INVALID_IDX);
assert(id != MO_INVALID_IDX);
// Ignore direct reports.
if (tbi.isDirectReport(id)) {
return false;
}
// Any vertex involved in a "ghost" relationship has already been disallowed // Any vertex involved in a "ghost" relationship has already been disallowed