1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 03:02:36 +01:00

Update test name to match changes made in r218783

Addressing post commit review feedback from Justin Bogner.

llvm-svn: 218821
This commit is contained in:
David Blaikie 2014-10-01 21:19:39 +00:00
parent e70bbe654f
commit abe7833c2f

View File

@ -346,7 +346,7 @@ private:
unsigned Immovable::Constructions = 0; unsigned Immovable::Constructions = 0;
unsigned Immovable::Destructions = 0; unsigned Immovable::Destructions = 0;
TEST_F(OptionalTest, MoveOnlyEmplace) { TEST_F(OptionalTest, ImmovableEmplace) {
Optional<Immovable> A; Optional<Immovable> A;
Immovable::ResetCounts(); Immovable::ResetCounts();
A.emplace(4); A.emplace(4);