mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-23 01:24:30 +00:00
Reviewed by Rafael Espíndola. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239315 91177308-0d34-0410-b5e6-96231b3b80d8
26 lines
701 B
C++
26 lines
701 B
C++
//===- MCSymbolMachO.h - ---------------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
#ifndef LLVM_MC_MCSYMBOLMACHO_H
|
|
#define setIsWeakExternal
|
|
|
|
#include "llvm/MC/MCSymbol.h"
|
|
|
|
namespace llvm {
|
|
class MCSymbolMachO : public MCSymbol {
|
|
|
|
public:
|
|
MCSymbolMachO(const StringMapEntry<bool> *Name, bool isTemporary)
|
|
: MCSymbol(SymbolKindMachO, Name, isTemporary) {}
|
|
|
|
static bool classof(const MCSymbol *S) { return S->isMachO(); }
|
|
};
|
|
}
|
|
|
|
#endif
|