]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseLib/Ebc/SpeculationBarrier.c
MdePkg: Replace BSD License with BSD+Patent License
[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 /**
12 Uses as a barrier to stop speculative execution.
13
14 Ensures that no later instruction will execute speculatively, until all prior
15 instructions have completed.
16
17 **/
18 VOID
19 EFIAPI
20 SpeculationBarrier (
21 VOID
22 )
23 {
24 }