summaryrefslogtreecommitdiffstats
path: root/source/slang/ir.cpp
diff options
context:
space:
mode:
authorjsmall-nvidia <jsmall@nvidia.com>2019-04-25 15:00:36 -0400
committerGitHub <noreply@github.com>2019-04-25 15:00:36 -0400
commitb5ca6352416995b5edd358623a6ae5db38d5e634 (patch)
tree8fa30243c974a18565756956f77045e034a7524d /source/slang/ir.cpp
parentc84e7c0fa526de51f380227a6667f723af36aea2 (diff)
Feature/uint int definition (#954)
* * Moved CPU determination macros to slang.h * Determine SlangUInt/SlangInt from the pointer width (determined from CPU macros) * Removed the UnambiguousInt and UnambigousUInt types - as a previous fragile work around * Removed UInt/Int definition from smart-pointer.h as now in common.h * * Remove ambiguity for PrettyWriter and ints * Improve comment around SlangInt/UInt * More fixes around ambiguity with PrettyWriter and integral types. * Disable VK on OSX. * Force CI to rebuild as spurious error.
Diffstat (limited to 'source/slang/ir.cpp')
-rw-r--r--source/slang/ir.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/slang/ir.cpp b/source/slang/ir.cpp
index 3f6f8e0a3..43ec09abb 100644
--- a/source/slang/ir.cpp
+++ b/source/slang/ir.cpp
@@ -3,7 +3,6 @@
#include "ir-insts.h"
#include "../core/basic.h"
-#include "../core/slang-cpu-defines.h"
#include "mangle.h"
@@ -3008,7 +3007,7 @@ namespace Slang
IRDumpContext* context,
UInt val)
{
- context->builder->append(UnambigousUInt(val));
+ context->builder->append(val);
}
*/