diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2017-02-05 20:49:14 -0500 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2017-02-05 20:49:14 -0500 |
| commit | 28f63b8a4f2e55d2596a0e3daea106500a479791 (patch) | |
| tree | 4ceb95b0d8a5c8de8cdf00929fbe6ace3d749131 /src/all_types.hpp | |
| parent | d26bb3ae2e9add11ef350e5d7b040dfbe10539be (diff) | |
| download | zig-28f63b8a4f2e55d2596a0e3daea106500a479791.tar.gz zig-28f63b8a4f2e55d2596a0e3daea106500a479791.zip | |
fix volatile not respected for storing through a struct pointer
Diffstat (limited to 'src/all_types.hpp')
| -rw-r--r-- | src/all_types.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/all_types.hpp b/src/all_types.hpp index e14240d79c..3f4e20df97 100644 --- a/src/all_types.hpp +++ b/src/all_types.hpp @@ -1740,6 +1740,7 @@ struct IrInstructionVarPtr { VariableTableEntry *var; bool is_const; + bool is_volatile; }; struct IrInstructionCall { |
