Skip to content

Commit

Permalink
Remove support for old DDR tool terminology
Browse files Browse the repository at this point in the history
Signed-off-by: Keith W. Campbell <[email protected]>
  • Loading branch information
keithc-ca committed Jun 19, 2020
1 parent 934b0ff commit e4cce2c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 14 deletions.
4 changes: 0 additions & 4 deletions cmake/modules/ddr/DDRSetStub.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@ set(OMR_MODULES_DIR "@OMR_MODULES_DIR@")
set(DDR_SUPPORT_DIR "@OMR_MODULES_DIR@/ddr")
set(DDR_INFO_DIR "@DDR_INFO_DIR@")
set(DDR_EXCLUDES "$<TARGET_PROPERTY:@DDR_TARGET_NAME@,EXCLUDES>")
# temporarily support old property until downstream projects adapt
if(NOT DDR_EXCLUDES)
set(DDR_EXCLUDES "$<TARGET_PROPERTY:@DDR_TARGET_NAME@,BLACKLIST>")
endif()
set(DDR_OVERRIDES_FILE "$<TARGET_PROPERTY:@DDR_TARGET_NAME@,OVERRIDES_FILE>")
set(DDR_BLOB "$<TARGET_PROPERTY:@DDR_TARGET_NAME@,BLOB>")
set(DDR_SUPERSET "$<TARGET_PROPERTY:@DDR_TARGET_NAME@,SUPERSET>")
Expand Down
10 changes: 0 additions & 10 deletions ddr/tools/ddrgen/ddrgen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -246,13 +246,6 @@ Options::configure(OMRPortLibrary *portLibrary, int argc, char *argv[])
} else {
overrideListFile = argv[++i];
}
} else if (matchesEither(argv[i], "-l", "--blacklist")) {
/* temporarily support old options until downstream projects adapt */
if (argc < i + 2) {
showHelp = true;
} else {
excludesFile = argv[++i];
}
} else if (matchesEither(argv[i], "-x", "--excludes")) {
if (argc < i + 2) {
showHelp = true;
Expand All @@ -261,9 +254,6 @@ Options::configure(OMRPortLibrary *portLibrary, int argc, char *argv[])
}
} else if (matchesEither(argv[i], "-e", "--show-empty")) {
printEmptyTypes = true;
} else if (matchesEither(argv[i], "-sb", "--show-blacklisted")) {
/* temporarily support old options until downstream projects adapt */
showExcluded = true;
} else if (matchesEither(argv[i], "-sx", "--show-excluded")) {
showExcluded = true;
} else if (matchesEither(argv[i], "-v", "--version")) {
Expand Down

0 comments on commit e4cce2c

Please sign in to comment.