summaryrefslogtreecommitdiff
path: root/include/llvm/IR/Metadata.h
diff options
context:
space:
mode:
authorAlp Toker <alp@nuanti.com>2014-03-02 03:20:38 +0000
committerAlp Toker <alp@nuanti.com>2014-03-02 03:20:38 +0000
commit18510b7e431b5e8050f546edea904dcb43f46a48 (patch)
tree5283b7976797e827fb33b83b18a785d5ef060edc /include/llvm/IR/Metadata.h
parent243491693bda5368a8c447f35983fc946a696b56 (diff)
downloadllvm-18510b7e431b5e8050f546edea904dcb43f46a48.tar.gz
llvm-18510b7e431b5e8050f546edea904dcb43f46a48.tar.bz2
llvm-18510b7e431b5e8050f546edea904dcb43f46a48.tar.xz
[C++11] Expand and eliminate the LLVM_ENUM_INT_TYPE() macro
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202607 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/IR/Metadata.h')
-rw-r--r--include/llvm/IR/Metadata.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/IR/Metadata.h b/include/llvm/IR/Metadata.h
index 9659c2e05c..2d272d3fce 100644
--- a/include/llvm/IR/Metadata.h
+++ b/include/llvm/IR/Metadata.h
@@ -28,7 +28,7 @@ template<typename ValueSubClass, typename ItemParentClass>
class SymbolTableListTraits;
-enum LLVMConstants LLVM_ENUM_INT_TYPE(uint32_t) {
+enum LLVMConstants : uint32_t {
DEBUG_METADATA_VERSION = 1 // Current debug info version number.
};