diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2012-08-04 09:47:02 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2012-08-04 09:47:02 +0000 |
commit | 189f231a4b58a604320fb8c839689578d3ddb5c9 (patch) | |
tree | 13bc8f970dc15f4a59b2ed9c8fb9abf44c89bce8 /unittests | |
parent | a6273f1a4a29a4519abfb11933822910dd494644 (diff) | |
download | external_llvm-189f231a4b58a604320fb8c839689578d3ddb5c9.zip external_llvm-189f231a4b58a604320fb8c839689578d3ddb5c9.tar.gz external_llvm-189f231a4b58a604320fb8c839689578d3ddb5c9.tar.bz2 |
Postpone the deletion of the old name in StructType::setName to allow using a slice of the old name.
Fixes PR13522. Add a rudimentary unit test to exercise the behavior.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@161296 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r-- | unittests/VMCore/TypesTest.cpp | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/unittests/VMCore/TypesTest.cpp b/unittests/VMCore/TypesTest.cpp new file mode 100644 index 0000000..0416643 --- /dev/null +++ b/unittests/VMCore/TypesTest.cpp @@ -0,0 +1,30 @@ +//===- llvm/unittest/VMCore/TypesTest.cpp - Type unit tests ---------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#include "llvm/DerivedTypes.h" +#include "llvm/LLVMContext.h" +#include "gtest/gtest.h" +using namespace llvm; + +namespace { + +TEST(TypesTest, StructType) { + LLVMContext C; + + // PR13522 + StructType *Struct = StructType::create(C, "FooBar"); + EXPECT_EQ("FooBar", Struct->getName()); + Struct->setName(Struct->getName().substr(0, 3)); + EXPECT_EQ("Foo", Struct->getName()); + Struct->setName(""); + EXPECT_TRUE(Struct->getName().empty()); + EXPECT_FALSE(Struct->hasName()); +} + +} // end anonymous namespace |