]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseLib/Ebc/SpeculationBarrier.c
MdePkg: Apply uncrustify changes
[mirror_edk2.git] / MdePkg / Library / BaseLib / Ebc / SpeculationBarrier.c
1 /** @file
2 SpeculationBarrier() function for EBC.
3
4 Copyright (C) 2018, Intel Corporation. All rights reserved.<BR>
5
6 SPDX-License-Identifier: BSD-2-Clause-Patent
7
8 **/
9
10 /**
11 Uses as a barrier to stop speculative execution.
12
13 Ensures that no later instruction will execute speculatively, until all prior
14 instructions have completed.
15
16 **/
17 VOID
18 EFIAPI
19 SpeculationBarrier (
20 VOID
21 )
22 {
23 }