Clang doesn’t support a use of “this” pointer inside inline asm.
When I tried to compile a class or a struct (see example) with an inline asm that contains "this" pointer.
Clang returns with an error.
This patch fixes that.
error: expected unqualified-id
For example:
struct A { void f() { __asm mov eax, this // error: expected unqualified-id } };
Surely this breaks the contract of ParseUnqualifiedId, which should not return success if called on a 'this' token.