[unittests] Remove an MSVC 2013 workaround, NFCI.

Let's see what the bots have to say about this...

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@285090 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Vedant Kumar 2016-10-25 17:58:25 +00:00
parent c31e4b540a
commit a69463c75b

View File

@ -149,8 +149,6 @@ TEST(VerifierTest, InvalidFunctionLinkage) {
"have external or weak linkage!"));
}
#ifndef _MSC_VER
// FIXME: This test causes an ICE in MSVC 2013.
TEST(VerifierTest, StripInvalidDebugInfo) {
{
LLVMContext C;
@ -205,7 +203,6 @@ TEST(VerifierTest, StripInvalidDebugInfo) {
EXPECT_FALSE(verifyModule(M));
}
}
#endif
TEST(VerifierTest, StripInvalidDebugInfoLegacy) {
LLVMContext C;