aboutsummaryrefslogtreecommitdiff
path: root/src/entity.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2018-10-17 21:16:01 +0100
committergingerBill <bill@gingerbill.org>2018-10-17 21:16:01 +0100
commitb171cc41e6cc0271656593b547c3f8b27664d5bc (patch)
treec34fc8d8555fbf6892ff6798bc7ed52208f6f3da /src/entity.cpp
parentefc3a9e69dd072b678a78535d7b5a5f71e474024 (diff)
__atomic_* "intrinsics" using LLVM instructions
Diffstat (limited to 'src/entity.cpp')
-rw-r--r--src/entity.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/entity.cpp b/src/entity.cpp
index 2dd4a4be0..15a70f0a5 100644
--- a/src/entity.cpp
+++ b/src/entity.cpp
@@ -122,13 +122,13 @@ struct Entity {
String ir_mangled_name;
} TypeName;
struct {
- u64 tags;
- Entity * foreign_library;
- Ast * foreign_library_ident;
- String link_name;
- String link_prefix;
- bool is_foreign;
- bool is_export;
+ u64 tags;
+ Entity *foreign_library;
+ Ast * foreign_library_ident;
+ String link_name;
+ String link_prefix;
+ bool is_foreign;
+ bool is_export;
} Procedure;
struct {
Array<Entity *> entities;