mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-03 14:31:10 +00:00
Fix header, fix broken friend decl
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8616 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c1820036bd
commit
f091a53ad4
@ -1,6 +1,6 @@
|
|||||||
//===-- llvm/Argument.h - Definition of the Argument class -------*- C++ -*--=//
|
//===-- llvm/Argument.h - Definition of the Argument class ------*- C++ -*-===//
|
||||||
//
|
//
|
||||||
// This file defines the Argument class, which represents and incoming formal
|
// This file defines the Argument class, which represents an incoming formal
|
||||||
// argument to a Function.
|
// argument to a Function.
|
||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
@ -16,7 +16,8 @@ class Argument : public Value { // Defined in the Function.cpp file
|
|||||||
Argument *Prev, *Next; // Next and Prev links for our intrusive linked list
|
Argument *Prev, *Next; // Next and Prev links for our intrusive linked list
|
||||||
void setNext(Argument *N) { Next = N; }
|
void setNext(Argument *N) { Next = N; }
|
||||||
void setPrev(Argument *N) { Prev = N; }
|
void setPrev(Argument *N) { Prev = N; }
|
||||||
friend class SymbolTableListTraits<Argument, Function, Function>;
|
friend class SymbolTableListTraits<Argument, Function, Function,
|
||||||
|
ilist_traits<Argument> >;
|
||||||
void setParent(Function *parent);
|
void setParent(Function *parent);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user