summaryrefslogtreecommitdiff
path: root/source/slang/lower-to-ir.cpp
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2017-11-04 19:11:37 -0400
committerYong He <yonghe@outlook.com>2017-11-04 19:11:37 -0400
commitc6fb1de9547bd24a693915b758cc35499f1d949f (patch)
tree2ab3aa7bc1477cad02c82084ecca5e0a3a57f8d0 /source/slang/lower-to-ir.cpp
parent215ce206838db63fdd310a0ababe421799011d21 (diff)
fixed last couple warnings under release/x64 build.
Diffstat (limited to 'source/slang/lower-to-ir.cpp')
-rw-r--r--source/slang/lower-to-ir.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/slang/lower-to-ir.cpp b/source/slang/lower-to-ir.cpp
index 0c933374b..a659326e4 100644
--- a/source/slang/lower-to-ir.cpp
+++ b/source/slang/lower-to-ir.cpp
@@ -362,7 +362,7 @@ LoweredValInfo emitCompoundAssignOp(
IRValue* const* args)
{
auto builder = context->irBuilder;
-
+ SLANG_UNREFERENCED_PARAMETER(argCount);
assert(argCount == 2);
auto leftPtr = args[0];
auto rightVal = args[1];
@@ -412,7 +412,7 @@ LoweredValInfo emitPreOp(
IRValue* const* args)
{
auto builder = context->irBuilder;
-
+ SLANG_UNREFERENCED_PARAMETER(argCount);
assert(argCount == 1);
auto argPtr = args[0];
@@ -436,7 +436,7 @@ LoweredValInfo emitPostOp(
IRValue* const* args)
{
auto builder = context->irBuilder;
-
+ SLANG_UNREFERENCED_PARAMETER(argCount);
assert(argCount == 1);
auto argPtr = args[0];