mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-03 13:51:39 +00:00
when david added support for #NAME# he didn't update the comments and
tried (but failed) to artificially constrain it to working with #NAME#. Just allow any # in identifiers, and update the comments. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115704 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e2a268fd03
commit
c2b0875b8d
@ -96,7 +96,7 @@ tgtok::TokKind TGLexer::LexToken() {
|
|||||||
|
|
||||||
switch (CurChar) {
|
switch (CurChar) {
|
||||||
default:
|
default:
|
||||||
// Handle letters: [a-zA-Z_]
|
// Handle letters: [a-zA-Z_#]
|
||||||
if (isalpha(CurChar) || CurChar == '_' || CurChar == '#')
|
if (isalpha(CurChar) || CurChar == '_' || CurChar == '#')
|
||||||
return LexIdentifier();
|
return LexIdentifier();
|
||||||
|
|
||||||
@ -215,23 +215,13 @@ tgtok::TokKind TGLexer::LexVarName() {
|
|||||||
|
|
||||||
|
|
||||||
tgtok::TokKind TGLexer::LexIdentifier() {
|
tgtok::TokKind TGLexer::LexIdentifier() {
|
||||||
// The first letter is [a-zA-Z_].
|
// The first letter is [a-zA-Z_#].
|
||||||
const char *IdentStart = TokStart;
|
const char *IdentStart = TokStart;
|
||||||
|
|
||||||
// Match the rest of the identifier regex: [0-9a-zA-Z_]*
|
// Match the rest of the identifier regex: [0-9a-zA-Z_#]*
|
||||||
while (isalpha(*CurPtr) || isdigit(*CurPtr) || *CurPtr == '_'
|
while (isalpha(*CurPtr) || isdigit(*CurPtr) || *CurPtr == '_' ||
|
||||||
|| *CurPtr == '#') {
|
*CurPtr == '#')
|
||||||
// If this contains a '#', make sure it's value
|
++CurPtr;
|
||||||
if (*CurPtr == '#') {
|
|
||||||
if (strncmp(CurPtr, "#NAME#", 6) != 0) {
|
|
||||||
return tgtok::Error;
|
|
||||||
}
|
|
||||||
CurPtr += 6;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
++CurPtr;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// Check to see if this identifier is a keyword.
|
// Check to see if this identifier is a keyword.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user