diff options
author | Devang Patel <dpatel@apple.com> | 2010-08-10 20:22:49 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2010-08-10 20:22:49 +0000 |
commit | 6bf058c9aa59ec7893f9f3493daf9e6531699ce2 (patch) | |
tree | 67cced017d3f89570dbc6e1cb6ef9f4038f23ea5 /include | |
parent | 9f014061799c01bd6eb5947f95a330ee99798efc (diff) | |
download | external_llvm-6bf058c9aa59ec7893f9f3493daf9e6531699ce2.zip external_llvm-6bf058c9aa59ec7893f9f3493daf9e6531699ce2.tar.gz external_llvm-6bf058c9aa59ec7893f9f3493daf9e6531699ce2.tar.bz2 |
Add missing argument. CreateCompositeTypeEx() users, please verify.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110717 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Analysis/DebugInfo.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Analysis/DebugInfo.h b/include/llvm/Analysis/DebugInfo.h index 0fcc6e4..625ca8a 100644 --- a/include/llvm/Analysis/DebugInfo.h +++ b/include/llvm/Analysis/DebugInfo.h @@ -668,7 +668,8 @@ namespace llvm { unsigned Flags, DIType DerivedFrom, DIArray Elements, - unsigned RunTimeLang = 0); + unsigned RunTimeLang = 0, + MDNode *ContainingType = 0); /// CreateSubprogram - Create a new descriptor for the specified subprogram. /// See comments in DISubprogram for descriptions of these fields. |