diff options
author | Chris Lattner <sabre@nondot.org> | 2001-11-08 19:29:51 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-11-08 19:29:51 +0000 |
commit | 837bb2ce96f6c812bec6d0bdc9726bcb7fa8e850 (patch) | |
tree | b38b803f6ddc55bc396986cc79e0d1ebb56db611 /lib/Analysis | |
parent | 226f1f0b22853a879d142b848fa22e407efc9bd8 (diff) | |
download | external_llvm-837bb2ce96f6c812bec6d0bdc9726bcb7fa8e850.zip external_llvm-837bb2ce96f6c812bec6d0bdc9726bcb7fa8e850.tar.gz external_llvm-837bb2ce96f6c812bec6d0bdc9726bcb7fa8e850.tar.bz2 |
Print the method that makes an instruction invalid
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1213 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis')
-rw-r--r-- | lib/Analysis/IPA/FindUnsafePointerTypes.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/IPA/FindUnsafePointerTypes.cpp b/lib/Analysis/IPA/FindUnsafePointerTypes.cpp index 48e474f..d47e1d7 100644 --- a/lib/Analysis/IPA/FindUnsafePointerTypes.cpp +++ b/lib/Analysis/IPA/FindUnsafePointerTypes.cpp @@ -62,7 +62,7 @@ bool FindUnsafePointerTypes::doPerMethodWork(Method *Meth) { if (PrintFailures) { CachedWriter CW(M->getParent(), cerr); CW << "FindUnsafePointerTypes: Type '" << ITy - << "' marked unsafe by:\n" << Inst; + << "' marked unsafe in '" << Meth->getName() << "' by:\n" << Inst; } } } |