mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-19 18:24:00 +00:00
Add an accessor
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2054 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
//===- DataStructure.h - Build a Module's call graph -------------*- C++ -*--=//
|
||||
//===- DataStructure.h - Build data structure graphs -------------*- C++ -*--=//
|
||||
//
|
||||
// Implement the LLVM data structure analysis library.
|
||||
//
|
||||
@ -247,6 +247,10 @@ public:
|
||||
assert(ArgNo < ArgLinks.size() && "Arg # out of range!");
|
||||
return ArgLinks[ArgNo];
|
||||
}
|
||||
PointerValSet &getArgValues(unsigned ArgNo) {
|
||||
assert(ArgNo < ArgLinks.size() && "Arg # out of range!");
|
||||
return ArgLinks[ArgNo];
|
||||
}
|
||||
const std::vector<PointerValSet> &getArgs() const { return ArgLinks; }
|
||||
|
||||
virtual void dropAllReferences() {
|
||||
|
Reference in New Issue
Block a user