Skip to content

Commit f03474c

Browse files
author
Tobi Popoola
committed
1. Syntax plugin forgets function and adds __builtin_unreachable(); 2. Test modifed to suit updates
1 parent d6947bb commit f03474c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/lib/Parse/Parser.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ using namespace clang;
2525
LLVM_INSTANTIATE_REGISTRY(SyntaxHandlerRegistry)
2626

2727
void SyntaxHandler::anchor() {}
28-
// Utility function returning actual text for a declarrator.
28+
// Utility function returning actual text for a declarator.
2929
llvm::StringRef SyntaxHandler::getDeclText(Preprocessor &PP,Declarator &D){
3030
auto DeclCharRange = Lexer::getAsCharRange (D.getSourceRange(),
3131
PP.getSourceManager(), PP.getLangOpts());
@@ -1201,7 +1201,7 @@ void Parser::ProcessPluginSyntax(ParsingDeclarator &D) {
12011201
std::string Replacement;
12021202
llvm::raw_string_ostream ReplacementOS(Replacement);
12031203
ReplacementOS << "\n{\n";
1204-
// Place __builtin_unreachable(); in the forgotten function. This
1204+
// Place __builtin_unreachable(); in the forgoten function. This
12051205
// is done to avoid warnings from the compiler.
12061206
ReplacementOS << "__builtin_unreachable();\n";
12071207
ReplacementOS << "\n}\n";

0 commit comments

Comments
 (0)