Files
revng-revng/include/revng/Runtime/PlainMetaAddress.h
Ivan Krysak bc98e0079f Formatting: change PenaltyReturnTypeOnItsOwnLine
The new value is 21.
2023-07-02 13:20:49 +02:00

22 lines
516 B
C

#pragma once
/*
* This file is distributed under the MIT License. See LICENSE.md for details.
*/
#include <stdint.h>
typedef struct {
uint32_t Epoch;
uint16_t AddressSpace;
uint16_t Type;
uint64_t Address;
} PlainMetaAddress;
// NOLINTNEXTLINE
PlainMetaAddress build_PlainMetaAddress(uint32_t Epoch,
uint16_t AddressSpace,
uint16_t Type,
uint64_t Address)
__attribute__((const));