aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorManman Ren <mren@apple.com>2013-06-07 03:13:46 +0000
committerManman Ren <mren@apple.com>2013-06-07 03:13:46 +0000
commit37bfb18f8f0557611fbdf238abe200813f07d298 (patch)
tree92a7a50d966da2fd8ca506e89c4b4b3b0708ddbd /include
parentc6752d5565d77e1824eb08cfc2bd53b5f6229fdb (diff)
downloadexternal_llvm-37bfb18f8f0557611fbdf238abe200813f07d298.zip
external_llvm-37bfb18f8f0557611fbdf238abe200813f07d298.tar.gz
external_llvm-37bfb18f8f0557611fbdf238abe200813f07d298.tar.bz2
DIBuilder: No functionality change.
Use the correct DIType when creating vector types. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183484 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/DIBuilder.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/DIBuilder.h b/include/llvm/DIBuilder.h
index 9352f67..f988569 100644
--- a/include/llvm/DIBuilder.h
+++ b/include/llvm/DIBuilder.h
@@ -349,8 +349,8 @@ namespace llvm {
/// @param AlignInBits Alignment.
/// @param Ty Element type.
/// @param Subscripts Subscripts.
- DIType createVectorType(uint64_t Size, uint64_t AlignInBits,
- DIType Ty, DIArray Subscripts);
+ DICompositeType createVectorType(uint64_t Size, uint64_t AlignInBits,
+ DIType Ty, DIArray Subscripts);
/// createEnumerationType - Create debugging information entry for an
/// enumeration.