We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c9bdd0 commit 134430dCopy full SHA for 134430d
llvm/unittests/IR/VerifierTest.cpp
@@ -145,6 +145,8 @@ TEST(VerifierTest, CrossModuleMetadataRef) {
145
.startswith("Referencing global in another module!"));
146
}
147
148
+#ifndef _MSC_VER
149
+// FIXME: This test causes an ICE in MSVC 2013.
150
TEST(VerifierTest, StripInvalidDebugInfo) {
151
LLVMContext C;
152
Module M("M", C);
@@ -167,7 +169,7 @@ TEST(VerifierTest, StripInvalidDebugInfo) {
167
169
MPM.run(M, MAM);
168
170
EXPECT_FALSE(verifyModule(M));
171
-
172
+#endif
173
174
} // end anonymous namespace
175
} // end namespace llvm
0 commit comments