Remove extra qualifier (dotnet/coreclr#27455)
authorSinan Kaya <41809318+franksinankaya@users.noreply.github.com>
Sat, 26 Oct 2019 11:49:45 +0000 (07:49 -0400)
committerJan Kotas <jkotas@microsoft.com>
Sat, 26 Oct 2019 11:49:45 +0000 (04:49 -0700)
Commit migrated from https://github.com/dotnet/coreclr/commit/a2f10df4c15f1d78e7bced554b6797bfaa42fda9

src/coreclr/src/jit/emit.h

index 35d6e11..9fab3cb 100644 (file)
@@ -1212,9 +1212,9 @@ protected:
     }; // End of  struct instrDesc
 
 #if defined(_TARGET_XARCH_)
-    insFormat emitter::getMemoryOperation(instrDesc* id);
+    insFormat getMemoryOperation(instrDesc* id);
 #elif defined(_TARGET_ARM64_)
-    void emitter::getMemoryOperation(instrDesc* id, unsigned* pMemAccessKind, bool* pIsLocalAccess);
+    void getMemoryOperation(instrDesc* id, unsigned* pMemAccessKind, bool* pIsLocalAccess);
 #endif
 
 #if defined(DEBUG) || defined(LATE_DISASM)