aboutsummaryrefslogtreecommitdiff
path: root/src/all_types.hpp
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2017-02-04 22:12:06 -0500
committerAndrew Kelley <superjoe30@gmail.com>2017-02-04 22:12:06 -0500
commitb840184bb09b9d5e4272f848dcaa7c4973dfdcd5 (patch)
treefb0be751a985d6b52c173da49692171e61e935e2 /src/all_types.hpp
parent419e75eb2313b4910921185211201317cbbb400c (diff)
downloadzig-b840184bb09b9d5e4272f848dcaa7c4973dfdcd5.tar.gz
zig-b840184bb09b9d5e4272f848dcaa7c4973dfdcd5.zip
memcpy and memset builtins support volatile pointers
See #238
Diffstat (limited to 'src/all_types.hpp')
-rw-r--r--src/all_types.hpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/all_types.hpp b/src/all_types.hpp
index ccb63643c6..18f668c0ef 100644
--- a/src/all_types.hpp
+++ b/src/all_types.hpp
@@ -2064,7 +2064,6 @@ struct IrInstructionMemset {
IrInstruction *dest_ptr;
IrInstruction *byte;
IrInstruction *count;
- bool is_volatile;
};
struct IrInstructionMemcpy {
@@ -2073,7 +2072,6 @@ struct IrInstructionMemcpy {
IrInstruction *dest_ptr;
IrInstruction *src_ptr;
IrInstruction *count;
- bool is_volatile;
};
struct IrInstructionSlice {