diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2017-02-04 22:12:06 -0500 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2017-02-04 22:12:06 -0500 |
| commit | b840184bb09b9d5e4272f848dcaa7c4973dfdcd5 (patch) | |
| tree | fb0be751a985d6b52c173da49692171e61e935e2 /src/all_types.hpp | |
| parent | 419e75eb2313b4910921185211201317cbbb400c (diff) | |
| download | zig-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.hpp | 2 |
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 { |
