diff options
author | Adrian Prantl <aprantl@apple.com> | 2013-04-19 19:56:02 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2013-04-19 19:56:02 +0000 |
commit | 2f445be5a75b4d1a907dd694c9e5c518229df48e (patch) | |
tree | 128855a9bca263f962aba004df47fd2a56427e34 /lib/IR | |
parent | 4acef770cfb9622a5baf3e1c72e99c4fc84e48ea (diff) | |
download | external_llvm-2f445be5a75b4d1a907dd694c9e5c518229df48e.zip external_llvm-2f445be5a75b4d1a907dd694c9e5c518229df48e.tar.gz external_llvm-2f445be5a75b4d1a907dd694c9e5c518229df48e.tar.bz2 |
Rename ClassType to the more accurate UnderlyingType and document its purpose.
rdar://problem/13463793
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179877 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/IR')
-rw-r--r-- | lib/IR/DIBuilder.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/IR/DIBuilder.cpp b/lib/IR/DIBuilder.cpp index 9d6e840..0ed61b5 100644 --- a/lib/IR/DIBuilder.cpp +++ b/lib/IR/DIBuilder.cpp @@ -427,7 +427,7 @@ DIType DIBuilder::createObjCIVar(StringRef Name, DIObjCProperty DIBuilder::createObjCProperty(StringRef Name, DIFile File, unsigned LineNumber, StringRef GetterName, - StringRef SetterName, + StringRef SetterName, unsigned PropertyAttributes, DIType Ty) { Value *Elts[] = { @@ -601,7 +601,7 @@ DIBuilder::createSubroutineType(DIFile File, DIArray ParameterTypes) { DICompositeType DIBuilder::createEnumerationType( DIDescriptor Scope, StringRef Name, DIFile File, unsigned LineNumber, uint64_t SizeInBits, uint64_t AlignInBits, DIArray Elements, - DIType ClassType) { + DIType UnderlyingType) { // TAG_enumeration_type is encoded in DICompositeType format. Value *Elts[] = { GetTagConstant(VMContext, dwarf::DW_TAG_enumeration_type), @@ -613,7 +613,7 @@ DICompositeType DIBuilder::createEnumerationType( ConstantInt::get(Type::getInt64Ty(VMContext), AlignInBits), ConstantInt::get(Type::getInt32Ty(VMContext), 0), ConstantInt::get(Type::getInt32Ty(VMContext), 0), - ClassType, + UnderlyingType, Elements, ConstantInt::get(Type::getInt32Ty(VMContext), 0), Constant::getNullValue(Type::getInt32Ty(VMContext)) |