forked from OSchip/llvm-project
Simplify this unittest.
Thanks to dblaikie for the suggestion! llvm-svn: 260125
This commit is contained in:
parent
fc8c5048dc
commit
817c47bb42
|
@ -2078,12 +2078,9 @@ TEST_F(ValueAsMetadataTest, TempTempReplacement) {
|
||||||
ConstantAsMetadata *CI = ConstantAsMetadata::get(
|
ConstantAsMetadata *CI = ConstantAsMetadata::get(
|
||||||
ConstantInt::get(getGlobalContext(), APInt(8, 0)));
|
ConstantInt::get(getGlobalContext(), APInt(8, 0)));
|
||||||
|
|
||||||
Metadata *Ops1[] = {CI};
|
|
||||||
auto Temp1 = MDTuple::getTemporary(Context, None);
|
auto Temp1 = MDTuple::getTemporary(Context, None);
|
||||||
auto Temp2 = MDTuple::getTemporary(Context, Ops1);
|
auto Temp2 = MDTuple::getTemporary(Context, {CI});
|
||||||
|
auto *N = MDTuple::get(Context, {Temp1.get()});
|
||||||
Metadata *Ops2[] = {Temp1.get()};
|
|
||||||
auto *N = MDTuple::get(Context, Ops2);
|
|
||||||
|
|
||||||
// Test replacing a temporary node with another temporary node.
|
// Test replacing a temporary node with another temporary node.
|
||||||
Temp1->replaceAllUsesWith(Temp2.get());
|
Temp1->replaceAllUsesWith(Temp2.get());
|
||||||
|
|
Loading…
Reference in New Issue