[C++11] Remove uses of LLVM_HAS_RVALUE_REFERENCES from the unittests.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202583 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chandler Carruth
2014-03-01 09:36:06 +00:00
parent bc1bddb4c6
commit bad2104d24
6 changed files with 0 additions and 46 deletions

View File

@ -140,7 +140,6 @@ TEST_F(RegexTest, IsValid) {
EXPECT_EQ("invalid character range", Error);
}
#if LLVM_HAS_RVALUE_REFERENCES
TEST_F(RegexTest, MoveConstruct) {
Regex r1("^[0-9]+$");
Regex r2(std::move(r1));
@ -153,6 +152,5 @@ TEST_F(RegexTest, MoveAssign) {
r2 = std::move(r1);
EXPECT_TRUE(r2.match("916"));
}
#endif
}