Skip to content

Commit

Permalink
Fix doc
Browse files Browse the repository at this point in the history
  • Loading branch information
kkent030315 committed Oct 28, 2024
1 parent 24879d6 commit 60c1430
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pe/debug.rs
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@ impl<'a> ExDllCharacteristicsInfo {
}
}

/// Represents the `IMAGE_DEBUG_POGO_ENTRY` structure, which provides information
/// Represents the POGO info structure, which provides information
/// about Profile-Guided Optimization (POGO aka PGO) data within a PE file.
///
/// PGO is a compiler optimization technique that uses data collected from program
Expand All @@ -714,6 +714,7 @@ pub struct POGOInfo<'a> {
pub data: &'a [u8],
}

/// Represents the `IMAGE_DEBUG_POGO_ENTRY` structure
#[derive(Debug, PartialEq, Copy, Clone, Default)]
pub struct POGOInfoEntry<'a> {
/// The relative virtual address (RVA) of the PGO data.
Expand Down

0 comments on commit 60c1430

Please sign in to comment.