AST: Remove noreturn bit from function types

This commit is contained in:
Slava Pestov
2016-07-21 12:35:18 -07:00
parent 5a71bd5321
commit 57c58176bc
33 changed files with 51 additions and 204 deletions

View File

@@ -1125,8 +1125,6 @@ void Remangler::mangleImplFunctionAttribute(Node *node) {
Out << "CO";
} else if (text == "@convention(witness_method)") {
Out << "Cw";
} else if (text == "@noreturn") {
Out << "CN";
} else {
unreachable("bad impl-function-attribute");
}