don't use Compiler:: if we are currently in this namescape. (#15045)
authorSergey Andreenko <seandree@microsoft.com>
Thu, 16 Nov 2017 04:36:41 +0000 (20:36 -0800)
committerGitHub <noreply@github.com>
Thu, 16 Nov 2017 04:36:41 +0000 (20:36 -0800)
I was confused that we were outside of Compiler::

src/jit/gentree.cpp

index 3a543c9..c393fe2 100644 (file)
@@ -10576,7 +10576,7 @@ int Compiler::gtGetLclVarName(unsigned lclNum, char* buf, unsigned buf_remaining
     const char* ilName = nullptr;
     unsigned    ilNum  = 0;
 
-    Compiler::gtGetLclVarNameInfo(lclNum, &ilKind, &ilName, &ilNum);
+    gtGetLclVarNameInfo(lclNum, &ilKind, &ilName, &ilNum);
 
     if (ilName != nullptr)
     {