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:
8737be8
)
simplify expression
author
Adrian Prantl
<aprantl@apple.com>
Wed, 21 Jan 2015 21:23:35 +0000
(21:23 +0000)
committer
Adrian Prantl
<aprantl@apple.com>
Wed, 21 Jan 2015 21:23:35 +0000
(21:23 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@226701
91177308
-0d34-0410-b5e6-
96231b3b80d8
unittests/IR/IRBuilderTest.cpp
patch
|
blob
|
history
diff --git
a/unittests/IR/IRBuilderTest.cpp
b/unittests/IR/IRBuilderTest.cpp
index 018914da8c92b65645e7486b1785abf9a06ec91e..08a729aba5061f61fb8a79058cca353c5528c86e 100644
(file)
--- a/
unittests/IR/IRBuilderTest.cpp
+++ b/
unittests/IR/IRBuilderTest.cpp
@@
-294,9
+294,7
@@
TEST_F(IRBuilderTest, DIBuilder) {
auto File = DIB.createFile("F.CBL", "/");
auto CU = DIB.createCompileUnit(dwarf::DW_LANG_Cobol74, "F.CBL", "/",
"llvm-cobol74", true, "", 0);
- auto Type =
- DIB.createSubroutineType(File,
- DIB.getOrCreateTypeArray(ArrayRef<Metadata*>()));
+ auto Type = DIB.createSubroutineType(File, DIB.getOrCreateTypeArray(None));
auto SP = DIB.createFunction(CU, "foo", "", File, 1, Type,
false, true, 1, 0, true, F);
EXPECT_TRUE(SP.Verify());