Skip to content

Commit cb215ae

Browse files
authored
Merge branch 'users/kparzysz/spr/t07-alias-spellings' into users/kparzysz/spr/t08-versioned-spellings
2 parents 2ef30aa + 5b50dee commit cb215ae

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/include/llvm/TableGen/DirectiveEmitter.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,9 +149,9 @@ class BaseRecord {
149149

150150
std::vector<Spelling::Value> getSpellings() const {
151151
std::vector<Spelling::Value> List;
152-
llvm::transform(
153-
Def->getValueAsListOfDefs("spellings"), std::back_inserter(List),
154-
[](const Record *R) { return Spelling(R).get(); });
152+
llvm::transform(Def->getValueAsListOfDefs("spellings"),
153+
std::back_inserter(List),
154+
[](const Record *R) { return Spelling(R).get(); });
155155
return List;
156156
}
157157

0 commit comments

Comments
 (0)