mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Define an operator<< for APInt to be used with std::ostream.
This will allow it to be used in unittests that use gtest's EXPECT_EQ. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74494 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -1426,6 +1426,8 @@ inline raw_ostream &operator<<(raw_ostream &OS, const APInt &I) {
|
||||
return OS;
|
||||
}
|
||||
|
||||
std::ostream &operator<<(std::ostream &o, const APInt &I);
|
||||
|
||||
namespace APIntOps {
|
||||
|
||||
/// @brief Determine the smaller of two APInts considered to be signed.
|
||||
|
Reference in New Issue
Block a user