Displaying 5 results from an estimated 5 matches for "test_demangle".
2015 Jul 22
3
[LLVMdev] [cfe-dev] [3.7 Release] RC1 has been tagged, Testing Phase I begins
...ea.cc
AddressSanitizer-mips-linux :: TestCases/Posix/coverage-direct-large.cc
UBSan-ASan-mips :: TestCases/Float/cast-overflow.cpp
UBSan-Standalone-mips :: TestCases/Float/cast-overflow.cpp
libc++abi :: backtrace_test.pass.cpp
libc++abi :: test_demangle.pass.cpp
On little-endian Mips32r2:
AddressSanitizer-mips-linux :: TestCases/Linux/kernel-area.cc
libc++abi :: backtrace_test.pass.cpp
libc++abi :: test_demangle.pass.cpp
Jaydeep Patil and Nitesh Jain have shown me a patch for 'libc++abi :: test_demangle.pa...
2015 Jul 22
0
[LLVMdev] [cfe-dev] [3.7 Release] RC1 has been tagged, Testing Phase I begins
...dressSanitizer-mips-linux :: TestCases/Posix/coverage-direct-large.cc
> UBSan-ASan-mips :: TestCases/Float/cast-overflow.cpp
> UBSan-Standalone-mips :: TestCases/Float/cast-overflow.cpp
> libc++abi :: backtrace_test.pass.cpp
> libc++abi :: test_demangle.pass.cpp
>
> On little-endian Mips32r2:
> AddressSanitizer-mips-linux :: TestCases/Linux/kernel-area.cc
> libc++abi :: backtrace_test.pass.cpp
> libc++abi :: test_demangle.pass.cpp
>
> Jaydeep Patil and Nitesh Jain have shown me a patch for &...
2015 Jul 16
23
[LLVMdev] [3.7 Release] RC1 has been tagged, Testing Phase I begins
Dear testers,
3.7.0-rc1 was just tagged; please start your testing engines :-)
Upload binaries to the sftp and report your results to this thread.
I'm sorry for the delay between branching and tagging. The changes to
the release script took a little longer than I hoped.
Thanks for helping with the release, and do let me know of any issues,
questions, etc.
The tracking bug for release
2015 Jul 15
10
[LLVMdev] [3.7 Release] We have branched
Hi all,
The 3.7 release branch was created from trunk at r242221 today (around
10:40 pm UTC).
Branch policy:
- Any doc changes can go in. Updates to the release notes are highly
encouraged, and should be committed directly to the branch.
- All other patches should be approved by the release manager (me) and
the appropriate code owner. To get a change merged, commit it to
trunk, and then reply
2017 Jun 21
6
RFC: Cleaning up the Itanium demangler
...st += db.names.back().second;
+ // std::memcpy(buf, db.names.back().first.data(), sz-1);
+ // buf[sz-1] = char(0);
}
}
else
buf = nullptr;
if (status)
*status = internal_status;
return buf;
}
} // __cxxabiv1
diff --git a/test/test_demangle.pass.cpp b/test/test_demangle.pass.cpp
index 451f5f9..65c9059 100644
--- a/test/test_demangle.pass.cpp
+++ b/test/test_demangle.pass.cpp
@@ -29103,698 +29103,702 @@ const char* cases[][2] =
{"_ZL16nFriendTemplates", "nFriendTemplates"},
{"_ZL13nLinkageSpecs",...