diff options
author | Eric Christopher <echristo@apple.com> | 2012-05-23 00:09:20 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2012-05-23 00:09:20 +0000 |
commit | bb0f6eac1f2d04e485607f0726c31a84ce9b8ced (patch) | |
tree | 288d3478d446323afa96f336f7ef0a81ad4a741c /include/llvm/Analysis/DIBuilder.h | |
parent | 2f0a7484527ddf4ac5f9d24231bcce90d02323e2 (diff) | |
download | external_llvm-bb0f6eac1f2d04e485607f0726c31a84ce9b8ced.tar.gz external_llvm-bb0f6eac1f2d04e485607f0726c31a84ce9b8ced.tar.bz2 external_llvm-bb0f6eac1f2d04e485607f0726c31a84ce9b8ced.zip |
Add support for C++11 enum classes in llvm.
Part of rdar://11496790
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157303 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis/DIBuilder.h')
-rw-r--r-- | include/llvm/Analysis/DIBuilder.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Analysis/DIBuilder.h b/include/llvm/Analysis/DIBuilder.h index 434d98ba4e..667f76c69f 100644 --- a/include/llvm/Analysis/DIBuilder.h +++ b/include/llvm/Analysis/DIBuilder.h @@ -331,8 +331,8 @@ namespace llvm { /// @param Elements Enumeration elements. DIType createEnumerationType(DIDescriptor Scope, StringRef Name, DIFile File, unsigned LineNumber, - uint64_t SizeInBits, - uint64_t AlignInBits, DIArray Elements); + uint64_t SizeInBits, uint64_t AlignInBits, + DIArray Elements, DIType ClassType); /// createSubroutineType - Create subroutine type. /// @param File File in which this subroutine is defined. |