diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-04-21 18:54:52 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-04-21 18:54:52 +0000 |
commit | 2655f85975d20aad16183ca6ec0d738934128c0a (patch) | |
tree | 1017968717af4a972911e0cd7471a3e403ea7659 /clang | |
parent | f5fec02d0cfa13e7d0b21b28a3d42f36796e65f8 (diff) | |
download | bcm5719-llvm-2655f85975d20aad16183ca6ec0d738934128c0a.tar.gz bcm5719-llvm-2655f85975d20aad16183ca6ec0d738934128c0a.zip |
Revert 69694 (use of undefined getSymbol)
llvm-svn: 69697
Diffstat (limited to 'clang')
-rw-r--r-- | clang/lib/Analysis/MemRegion.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/clang/lib/Analysis/MemRegion.cpp b/clang/lib/Analysis/MemRegion.cpp index ad7e80d7249..5e71924bf9c 100644 --- a/clang/lib/Analysis/MemRegion.cpp +++ b/clang/lib/Analysis/MemRegion.cpp @@ -157,16 +157,6 @@ void AllocaRegion::print(llvm::raw_ostream& os) const { os << "alloca{" << (void*) Ex << ',' << Cnt << '}'; } -void CodeTextRegion::print(llvm::raw_ostream& os) const { - os << "code{"; - if (isDeclared()) - os << getDecl()->getDeclName(); - else - os << '$' << getSymbol(); - - os << '}'; -} - void CompoundLiteralRegion::print(llvm::raw_ostream& os) const { // FIXME: More elaborate pretty-printing. os << "{ " << (void*) CL << " }"; |