diff options
author | Vassil Vassilev <v.g.vassilev@gmail.com> | 2025-07-20 08:21:38 +0000 |
---|---|---|
committer | Vassil Vassilev <v.g.vassilev@gmail.com> | 2025-07-20 08:23:47 +0000 |
commit | 6163b66e0aa7a3fa32b05fa4e1016d0631c20451 (patch) | |
tree | b79a2dbdd8243cdfdd7313d96b6a555847877a7c /clang/unittests/Interpreter/InterpreterTest.cpp | |
parent | 0dfac65595f6641d1da93085a2413f5a34804cf3 (diff) | |
download | llvm-6163b66e0aa7a3fa32b05fa4e1016d0631c20451.zip llvm-6163b66e0aa7a3fa32b05fa4e1016d0631c20451.tar.gz llvm-6163b66e0aa7a3fa32b05fa4e1016d0631c20451.tar.bz2 |
[clang-repl] Another try on system-z.
This patch should make msan happy as it found a real bug where we always try to
read an unsigned long long without respecting the underlying enum type.
Another follow-up on llvm/llvm-project#102858
Diffstat (limited to 'clang/unittests/Interpreter/InterpreterTest.cpp')
-rw-r--r-- | clang/unittests/Interpreter/InterpreterTest.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/clang/unittests/Interpreter/InterpreterTest.cpp b/clang/unittests/Interpreter/InterpreterTest.cpp index fb9e98d..2ba15cb 100644 --- a/clang/unittests/Interpreter/InterpreterTest.cpp +++ b/clang/unittests/Interpreter/InterpreterTest.cpp @@ -392,9 +392,6 @@ TEST_F(InterpreterTest, Value) { EXPECT_EQ(V9.getKind(), Value::K_PtrOrObj); EXPECT_TRUE(V9.isManuallyAlloc()); - if (llvm::Triple(llvm::sys::getDefaultTargetTriple()).isSystemZ()) - GTEST_SKIP(); // Enum printing is broken for unknown reasons on SystemZ. - Value V10; llvm::cantFail(Interp->ParseAndExecute( "enum D : unsigned int {Zero = 0, One}; One", &V10)); |