diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2016-04-18 23:24:39 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2016-04-18 23:24:39 +0000 |
commit | 3ca0d69530dd15d4e839e3c51663ceef23fcc79d (patch) | |
tree | 30659580fce713131ad211942816b9e4d60cab87 /llvm | |
parent | cceb468f367b5af5ba60de7ec257c7d57f8d9c8e (diff) | |
download | bcm5719-llvm-3ca0d69530dd15d4e839e3c51663ceef23fcc79d.tar.gz bcm5719-llvm-3ca0d69530dd15d4e839e3c51663ceef23fcc79d.zip |
Add missing header, found by modules selfhost.
llvm-svn: 266696
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/include/llvm/Support/AtomicOrdering.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/include/llvm/Support/AtomicOrdering.h b/llvm/include/llvm/Support/AtomicOrdering.h index e0b828affa7..c9ffb24fa75 100644 --- a/llvm/include/llvm/Support/AtomicOrdering.h +++ b/llvm/include/llvm/Support/AtomicOrdering.h @@ -18,6 +18,8 @@ #ifndef LLVM_SUPPORT_ATOMICORDERING_H #define LLVM_SUPPORT_ATOMICORDERING_H +#include <stddef.h> + namespace llvm { /// Atomic ordering for C11 / C++11's memody models. |