mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Fit to 80 cols
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16964 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f9d7178ba8
commit
1c765b0037
@ -348,17 +348,16 @@ private:
|
||||
/// @brief The basic blocks we've parsed, while parsing a function.
|
||||
std::vector<BasicBlock*> ParsedBasicBlocks;
|
||||
|
||||
/// This maintains a mapping between <Type, Slot #>'s and
|
||||
/// forward references to constants. Such values may be referenced before they
|
||||
/// are defined, and if so, the temporary object that they represent is held
|
||||
/// here.
|
||||
/// @brief Temporary place for forward references to constants.
|
||||
/// This maintains a mapping between <Type, Slot #>'s and forward references
|
||||
/// to constants. Such values may be referenced before they are defined, and
|
||||
/// if so, the temporary object that they represent is held here. @brief
|
||||
/// Temporary place for forward references to constants.
|
||||
ConstantRefsType ConstantFwdRefs;
|
||||
|
||||
/// Constant values are read in after global variables. Because of this, we
|
||||
/// must defer setting the initializers on global variables until after module
|
||||
/// level constants have been read. In the mean time, this list keeps track of
|
||||
/// what we must do.
|
||||
/// level constants have been read. In the mean time, this list keeps track
|
||||
/// of what we must do.
|
||||
GlobalInitsList GlobalInits;
|
||||
|
||||
// For lazy reading-in of functions, we need to save away several pieces of
|
||||
|
Loading…
Reference in New Issue
Block a user