summaryrefslogtreecommitdiff
path: root/src/jit/valuenum.h
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/valuenum.h
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/valuenum.h')
-rw-r--r--src/jit/valuenum.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jit/valuenum.h b/src/jit/valuenum.h
index 9535151d98..abc97c4cef 100644
--- a/src/jit/valuenum.h
+++ b/src/jit/valuenum.h
@@ -340,7 +340,7 @@ public:
// Returns the VN representing the union of the two exception sets "xs0" and "xs1".
// These must be VNForEmtpyExcSet() or applications of VNF_ExcSetCons, obeying
// the ascending order invariant (which is preserved in the result.)
- ValueNum VNExcSetUnion(ValueNum xs0, ValueNum xs1 DEBUG_ARG(bool topLevel = true));
+ ValueNum VNExcSetUnion(ValueNum xs0, ValueNum xs1 DEBUGARG(bool topLevel = true));
ValueNumPair VNPExcSetUnion(ValueNumPair xs0vnp, ValueNumPair xs1vnp);