aboutsummaryrefslogtreecommitdiff
path: root/llvm/unittests/ADT/SmallVectorTest.cpp
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2012-04-29 10:53:29 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2012-04-29 10:53:29 +0000
commit74a12a46a04b9d2bcd1251a641b7cb64dfc0c5f8 (patch)
tree47ef66ca8d5c9aa16a659f826b44d0f96df3c65d /llvm/unittests/ADT/SmallVectorTest.cpp
parent3b6e07cd1a71df7b8a367adbc5635089a76ce942 (diff)
downloadllvm-74a12a46a04b9d2bcd1251a641b7cb64dfc0c5f8.zip
llvm-74a12a46a04b9d2bcd1251a641b7cb64dfc0c5f8.tar.gz
llvm-74a12a46a04b9d2bcd1251a641b7cb64dfc0c5f8.tar.bz2
SmallVector: Don't rely on having an assignment operator around in push_back for POD-like types.
llvm-svn: 155791
Diffstat (limited to 'llvm/unittests/ADT/SmallVectorTest.cpp')
-rw-r--r--llvm/unittests/ADT/SmallVectorTest.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/llvm/unittests/ADT/SmallVectorTest.cpp b/llvm/unittests/ADT/SmallVectorTest.cpp
index d5bfe76..c2542d6 100644
--- a/llvm/unittests/ADT/SmallVectorTest.cpp
+++ b/llvm/unittests/ADT/SmallVectorTest.cpp
@@ -413,4 +413,17 @@ TEST_F(SmallVectorTest, IteratorTest) {
theVector.insert(theVector.end(), L.begin(), L.end());
}
+struct notassignable {
+ int &x;
+ notassignable(int &x) : x(x) {}
+};
+
+TEST_F(SmallVectorTest, NoAssignTest) {
+ int x = 0;
+ SmallVector<notassignable, 2> vec;
+ vec.push_back(notassignable(x));
+ x = 42;
+ EXPECT_EQ(42, vec.pop_back_val().x);
+}
+
}