diff options
| author | Yong He <yonghe@outlook.com> | 2017-11-04 18:43:26 -0400 |
|---|---|---|
| committer | Yong He <yonghe@outlook.com> | 2017-11-04 18:43:26 -0400 |
| commit | a4fabfc85527bd4807a603dcde7c0a3762b11136 (patch) | |
| tree | fd7201b0ce9938081c4bde1f9e79ec646056ed02 /source/slang/ir.cpp | |
| parent | 00e03825d80c4997fa35461d82ff267f721ae8a6 (diff) | |
| parent | 215ce206838db63fdd310a0ababe421799011d21 (diff) | |
Merge remote-tracking branch 'refs/remotes/official/master'
Diffstat (limited to 'source/slang/ir.cpp')
| -rw-r--r-- | source/slang/ir.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/slang/ir.cpp b/source/slang/ir.cpp index e424b4cc3..04569771a 100644 --- a/source/slang/ir.cpp +++ b/source/slang/ir.cpp @@ -260,7 +260,7 @@ namespace Slang IRInst* inst = (IRInst*) malloc(size); memset(inst, 0, size); - inst->argCount = fixedArgCount + varArgCount; + inst->argCount = (uint32_t)(fixedArgCount + varArgCount); inst->op = op; |
