mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
Add explicit keywords.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95626 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
cf031f6d66
commit
159f527cb2
@ -40,7 +40,7 @@ private:
|
||||
void operator=(const MCExpr&); // DO NOT IMPLEMENT
|
||||
|
||||
protected:
|
||||
MCExpr(ExprKind _Kind) : Kind(_Kind) {}
|
||||
explicit MCExpr(ExprKind _Kind) : Kind(_Kind) {}
|
||||
|
||||
public:
|
||||
/// @name Accessors
|
||||
@ -86,7 +86,7 @@ inline raw_ostream &operator<<(raw_ostream &OS, const MCExpr &E) {
|
||||
class MCConstantExpr : public MCExpr {
|
||||
int64_t Value;
|
||||
|
||||
MCConstantExpr(int64_t _Value)
|
||||
explicit MCConstantExpr(int64_t _Value)
|
||||
: MCExpr(MCExpr::Constant), Value(_Value) {}
|
||||
|
||||
public:
|
||||
@ -118,7 +118,7 @@ public:
|
||||
class MCSymbolRefExpr : public MCExpr {
|
||||
const MCSymbol *Symbol;
|
||||
|
||||
MCSymbolRefExpr(const MCSymbol *_Symbol)
|
||||
explicit MCSymbolRefExpr(const MCSymbol *_Symbol)
|
||||
: MCExpr(MCExpr::SymbolRef), Symbol(_Symbol) {}
|
||||
|
||||
public:
|
||||
|
Loading…
x
Reference in New Issue
Block a user