diff options
| author | Harold Brenes <harold@hbrenes.com> | 2025-04-27 22:48:16 -0400 |
|---|---|---|
| committer | Harold Brenes <harold@hbrenes.com> | 2025-04-27 22:55:53 -0400 |
| commit | f3923ed66640ea9fd342ca851fdd2bd794405e0c (patch) | |
| tree | 516f3f79213c9b6b2c70c95385e62d6f7cf408b4 /src/llvm_backend.hpp | |
| parent | 6c9c239a5ef14a3365121b4964217a9bda255454 (diff) | |
Fix indentations
Fix Objective-C wrapper procs not forwarding return value
Diffstat (limited to 'src/llvm_backend.hpp')
| -rw-r--r-- | src/llvm_backend.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/llvm_backend.hpp b/src/llvm_backend.hpp index 7694c65c3..99ee2b2ff 100644 --- a/src/llvm_backend.hpp +++ b/src/llvm_backend.hpp @@ -196,7 +196,7 @@ struct lbModule { StringMap<lbAddr> objc_classes; StringMap<lbAddr> objc_selectors; - StringMap<lbAddr> objc_ivars; + StringMap<lbAddr> objc_ivars; PtrMap<u64/*type hash*/, lbAddr> map_cell_info_map; // address of runtime.Map_Info PtrMap<u64/*type hash*/, lbAddr> map_info_map; // address of runtime.Map_Cell_Info @@ -220,7 +220,7 @@ struct lbObjCGlobal { gbString global_name; String name; Type * type; - Type * class_impl_type; // This is set when the class has the objc_implement attribute set to true. + Type * class_impl_type; // This is set when the class has the objc_implement attribute set to true. }; struct lbGenerator : LinkerData { @@ -242,7 +242,7 @@ struct lbGenerator : LinkerData { MPSCQueue<lbEntityCorrection> entities_to_correct_linkage; MPSCQueue<lbObjCGlobal> objc_selectors; MPSCQueue<lbObjCGlobal> objc_classes; - MPSCQueue<lbObjCGlobal> objc_ivars; + MPSCQueue<lbObjCGlobal> objc_ivars; }; |