mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Mark some functions as used which are used within debug-only code. This
silences Clang's -Wunused-function when building in release mode. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129709 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
57557155c9
commit
3b55a372d4
@ -268,6 +268,8 @@ public:
|
||||
} // end anonymous namespace.
|
||||
|
||||
namespace llvm {
|
||||
raw_ostream &operator<<(raw_ostream &OS, const LVILatticeVal &Val)
|
||||
LLVM_ATTRIBUTE_USED;
|
||||
raw_ostream &operator<<(raw_ostream &OS, const LVILatticeVal &Val) {
|
||||
if (Val.isUndefined())
|
||||
return OS << "undefined";
|
||||
|
@ -388,6 +388,9 @@ namespace llvm {
|
||||
ftEntryTypeBuilder;
|
||||
|
||||
// BallLarusEdge << operator overloading
|
||||
raw_ostream& operator<<(raw_ostream& os,
|
||||
const BLInstrumentationEdge& edge)
|
||||
LLVM_ATTRIBUTE_USED;
|
||||
raw_ostream& operator<<(raw_ostream& os,
|
||||
const BLInstrumentationEdge& edge) {
|
||||
os << "[" << edge.getSource()->getName() << " -> "
|
||||
|
Loading…
x
Reference in New Issue
Block a user