summaryrefslogtreecommitdiff
path: root/unittests/Support/RegexTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'unittests/Support/RegexTest.cpp')
-rw-r--r--unittests/Support/RegexTest.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/unittests/Support/RegexTest.cpp b/unittests/Support/RegexTest.cpp
index c3a8085acc..c045c49bc3 100644
--- a/unittests/Support/RegexTest.cpp
+++ b/unittests/Support/RegexTest.cpp
@@ -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
}