@@ -45,9 +45,6 @@ enum LlvmIrVariableNumberFormat
45
45
Decimal ,
46
46
}
47
47
48
- /// <summary>
49
- /// Abstract base class for LLVM IR variable references.
50
- /// </summary>
51
48
/// <summary>
52
49
/// Abstract base class for LLVM IR variable references.
53
50
/// </summary>
@@ -122,6 +119,9 @@ abstract class LlvmIrVariable : LlvmIrVariableReference, IEquatable<LlvmIrVariab
122
119
/// <summary>
123
120
/// Gets or sets the write options that control how this variable is output in LLVM IR.
124
121
/// </summary>
122
+ /// <remarks>
123
+ /// Defaults to <see cref="LlvmIrVariableWriteOptions.ArrayWriteIndexComments"/>.
124
+ /// </remarks>
125
125
public LlvmIrVariableWriteOptions WriteOptions { get ; set ; } = LlvmIrVariableWriteOptions . ArrayWriteIndexComments ;
126
126
127
127
/// <summary>
@@ -142,6 +142,9 @@ abstract class LlvmIrVariable : LlvmIrVariableReference, IEquatable<LlvmIrVariab
142
142
/// <summary>
143
143
/// Gets or sets the number format to use when writing numeric values.
144
144
/// </summary>
145
+ /// <remarks>
146
+ /// Defaults to <see cref="LlvmIrVariableNumberFormat.Decimal"/>.
147
+ /// </remarks>
145
148
public LlvmIrVariableNumberFormat NumberFormat { get ; set ; } = LlvmIrVariableNumberFormat . Decimal ;
146
149
147
150
/// <summary>
@@ -351,9 +354,6 @@ protected LlvmIrStreamedArrayDataProvider (Type arrayElementType)
351
354
public abstract ulong GetTotalDataSize ( LlvmIrModuleTarget target ) ;
352
355
}
353
356
354
- /// <summary>
355
- /// Represents a global LLVM IR variable.
356
- /// </summary>
357
357
/// <summary>
358
358
/// Represents a global LLVM IR variable.
359
359
/// </summary>
@@ -527,7 +527,6 @@ public LlvmIrStringVariable (string name, string value, LlvmIrStringEncoding enc
527
527
: this ( name , new StringHolder ( value , encoding , comparison ) , options )
528
528
{ }
529
529
}
530
- }
531
530
532
531
/// <summary>
533
532
/// This is to address my dislike to have single-line variables separated by empty lines :P.
0 commit comments