mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-20 12:31:40 +00:00
Move FunctionArgument out of iOther.h into Argument.h and rename class to
be 'Argument' instead of FunctionArgument. Move Argument implementation to Function.cpp git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2211 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6c7fd1f414
commit
80dd50b4aa
@ -12,8 +12,25 @@
|
|||||||
#include "llvm/GlobalVariable.h"
|
#include "llvm/GlobalVariable.h"
|
||||||
#include "llvm/BasicBlock.h"
|
#include "llvm/BasicBlock.h"
|
||||||
#include "llvm/iOther.h"
|
#include "llvm/iOther.h"
|
||||||
|
#include "llvm/Argument.h"
|
||||||
#include "ValueHolderImpl.h"
|
#include "ValueHolderImpl.h"
|
||||||
|
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
// Argument Implementation
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
// Specialize setName to take care of symbol table majik
|
||||||
|
void Argument::setName(const std::string &name, SymbolTable *ST) {
|
||||||
|
Function *P;
|
||||||
|
assert((ST == 0 || (!getParent() || ST == getParent()->getSymbolTable())) &&
|
||||||
|
"Invalid symtab argument!");
|
||||||
|
if ((P = getParent()) && hasName()) P->getSymbolTable()->remove(this);
|
||||||
|
Value::setName(name);
|
||||||
|
if (P && hasName()) P->getSymbolTable()->insert(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
// Function Implementation
|
// Function Implementation
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
@ -22,8 +39,8 @@
|
|||||||
// Instantiate Templates - This ugliness is the price we have to pay
|
// Instantiate Templates - This ugliness is the price we have to pay
|
||||||
// for having a ValueHolderImpl.h file seperate from ValueHolder.h! :(
|
// for having a ValueHolderImpl.h file seperate from ValueHolder.h! :(
|
||||||
//
|
//
|
||||||
template class ValueHolder<FunctionArgument, Function, Function>;
|
template class ValueHolder<Argument , Function, Function>;
|
||||||
template class ValueHolder<BasicBlock , Function, Function>;
|
template class ValueHolder<BasicBlock, Function, Function>;
|
||||||
|
|
||||||
Function::Function(const FunctionType *Ty, bool isInternal,
|
Function::Function(const FunctionType *Ty, bool isInternal,
|
||||||
const std::string &name)
|
const std::string &name)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user