summaryrefslogtreecommitdiff
path: root/src/jit/codegencommon.cpp
diff options
context:
space:
mode:
authorPat Gavlin <pagavlin@microsoft.com>2016-04-11 14:04:54 -0700
committerPat Gavlin <pagavlin@microsoft.com>2016-04-18 10:30:29 -0700
commit60db675b54d35a92ead0ec3725df22d6d1f4e927 (patch)
tree591dd23139f230d3103c4c338196f69858634bb0 /src/jit/codegencommon.cpp
parentba68babd1c100a56664cbfd2071829a814269ed9 (diff)
downloadcoreclr-60db675b54d35a92ead0ec3725df22d6d1f4e927.tar.gz
coreclr-60db675b54d35a92ead0ec3725df22d6d1f4e927.tar.bz2
coreclr-60db675b54d35a92ead0ec3725df22d6d1f4e927.zip
Stanardize on `DEBUGARG` in the JIT.
The JIT uses both `DEBUGARG` (defined in jit.h) and `DEBUG_ARG` (defined in /src/inc/check.h) for debug-only arguments. This change replaces all uses of `DEBUG_ARG` with `DEBUGARG`.
Diffstat (limited to 'src/jit/codegencommon.cpp')
-rw-r--r--src/jit/codegencommon.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jit/codegencommon.cpp b/src/jit/codegencommon.cpp
index 7cee5b8f71..94f6be9cee 100644
--- a/src/jit/codegencommon.cpp
+++ b/src/jit/codegencommon.cpp
@@ -3189,7 +3189,7 @@ void CodeGen::genGenerateCode(void * * codePtr,
void* infoPtr =
#endif // DEBUG
#endif
- genCreateAndStoreGCInfo(codeSize, prologSize, epilogSize DEBUG_ARG(codePtr));
+ genCreateAndStoreGCInfo(codeSize, prologSize, epilogSize DEBUGARG(codePtr));
#ifdef DEBUG
FILE* dmpf = stdout;