aboutsummaryrefslogtreecommitdiff
path: root/src/all_types.hpp
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2018-10-26 14:59:58 -0400
committerAndrew Kelley <superjoe30@gmail.com>2018-10-26 15:01:51 -0400
commit2b395d4ede2d8ef356c54e1c7c09da88c634be11 (patch)
treeddb9806afc26bc55554e20066b29d076bec71f79 /src/all_types.hpp
parent40b7652a6da135aed68a0067f2de60b8b276713c (diff)
downloadzig-2b395d4ede2d8ef356c54e1c7c09da88c634be11.tar.gz
zig-2b395d4ede2d8ef356c54e1c7c09da88c634be11.zip
remove @minValue,@maxValue; add std.math.minInt,maxInt
closes #1466 closes #1476
Diffstat (limited to 'src/all_types.hpp')
-rw-r--r--src/all_types.hpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/all_types.hpp b/src/all_types.hpp
index a144013947..c490999a2b 100644
--- a/src/all_types.hpp
+++ b/src/all_types.hpp
@@ -1343,8 +1343,6 @@ enum BuiltinFnId {
BuiltinFnIdMemset,
BuiltinFnIdSizeof,
BuiltinFnIdAlignOf,
- BuiltinFnIdMaxValue,
- BuiltinFnIdMinValue,
BuiltinFnIdMemberCount,
BuiltinFnIdMemberType,
BuiltinFnIdMemberName,
@@ -2081,8 +2079,6 @@ enum IrInstructionId {
IrInstructionIdCUndef,
IrInstructionIdArrayLen,
IrInstructionIdRef,
- IrInstructionIdMinValue,
- IrInstructionIdMaxValue,
IrInstructionIdCompileErr,
IrInstructionIdCompileLog,
IrInstructionIdErrName,
@@ -2609,18 +2605,6 @@ struct IrInstructionRef {
bool is_volatile;
};
-struct IrInstructionMinValue {
- IrInstruction base;
-
- IrInstruction *value;
-};
-
-struct IrInstructionMaxValue {
- IrInstruction base;
-
- IrInstruction *value;
-};
-
struct IrInstructionCompileErr {
IrInstruction base;