projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
139f7e5
)
DIBuilder: Correct the null/0 type of trailing fields in struct debug info.
author
David Blaikie
<dblaikie@gmail.com>
Mon, 18 Feb 2013 07:27:30 +0000
(07:27 +0000)
committer
David Blaikie
<dblaikie@gmail.com>
Mon, 18 Feb 2013 07:27:30 +0000
(07:27 +0000)
Paired with an Clang commit so this may cause temporary build failures.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175426
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/IR/DIBuilder.cpp
patch
|
blob
|
history
diff --git
a/lib/IR/DIBuilder.cpp
b/lib/IR/DIBuilder.cpp
index 2fe13c44c6301ed2f9ceaeb0ec1d7bbf5d9d8faa..16632a1b97587016c15df8fd564cad717584dd4d 100644
(file)
--- a/
lib/IR/DIBuilder.cpp
+++ b/
lib/IR/DIBuilder.cpp
@@
-526,8
+526,8
@@
DIType DIBuilder::createStructType(DIDescriptor Context, StringRef Name,
NULL,
Elements,
ConstantInt::get(Type::getInt32Ty(VMContext), RunTimeLang),
-
ConstantInt::get(Type::getInt32Ty(VMContext), 0)
,
-
ConstantInt::get(Type::getInt32Ty(VMContext), 0)
,
+
NULL
,
+
NULL
,
};
return DIType(MDNode::get(VMContext, Elts));
}