aboutsummaryrefslogtreecommitdiff
path: root/src/all_types.hpp
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2017-02-05 20:49:14 -0500
committerAndrew Kelley <superjoe30@gmail.com>2017-02-05 20:49:14 -0500
commit28f63b8a4f2e55d2596a0e3daea106500a479791 (patch)
tree4ceb95b0d8a5c8de8cdf00929fbe6ace3d749131 /src/all_types.hpp
parentd26bb3ae2e9add11ef350e5d7b040dfbe10539be (diff)
downloadzig-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.hpp1
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 {