diff options
author | Chris Lattner <sabre@nondot.org> | 2009-07-01 04:13:31 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-07-01 04:13:31 +0000 |
commit | 0fd38069cb6699ce21eb159f22d3f23c012c9e81 (patch) | |
tree | f66dcf7ae670ad83fafd93662fe76538a2203c35 /lib/Analysis/DebugInfo.cpp | |
parent | 35c28eca627cd9dc2dd3ee3393074080103be456 (diff) |
improve the APIs for creating struct and function types with no arguments/elements
to not have to create a temporary vector (in the API at least). Patch by Jay Foad!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74584 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DebugInfo.cpp')
-rw-r--r-- | lib/Analysis/DebugInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/DebugInfo.cpp b/lib/Analysis/DebugInfo.cpp index 6b27cf4162..dbc3ae8a97 100644 --- a/lib/Analysis/DebugInfo.cpp +++ b/lib/Analysis/DebugInfo.cpp @@ -327,7 +327,7 @@ bool DISubprogram::describes(const Function *F) { DIFactory::DIFactory(Module &m) : M(m), StopPointFn(0), FuncStartFn(0), RegionStartFn(0), RegionEndFn(0), DeclareFn(0) { - EmptyStructPtr = PointerType::getUnqual(StructType::get(NULL, NULL)); + EmptyStructPtr = PointerType::getUnqual(StructType::get()); } /// getCastToEmpty - Return this descriptor as a Constant* with type '{}*'. |