about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/context.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/context.rs b/src/context.rs
index 1d46d73cd26..c9ce97c81eb 100644
--- a/src/context.rs
+++ b/src/context.rs
@@ -127,7 +127,8 @@ pub struct CodegenCx<'gcc, 'tcx> {
     pub pointee_infos: RefCell<FxHashMap<(Ty<'tcx>, Size), Option<PointeeInfo>>>,
 
     /// NOTE: a hack is used because the rustc API is not suitable to libgccjit and as such,
-    /// `const_undef()` returns struct as pointer so that they can later be assigned a value.
+    /// `const_undef()` returns struct as pointer so that they can later be assigned a value (in
+    /// e.g. Builder::insert_value).
     /// As such, this set remembers which of these pointers were returned by this function so that
     /// they can be dereferenced later.
     /// FIXME(antoyo): fix the rustc API to avoid having this hack.