Placed transfer function logic for dereferences in its own method, while at
the same time clearing up some logic of how the unary '*' operator is processed.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@47356 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/Analysis/RValues.cpp b/Analysis/RValues.cpp
index 0fc03dd..6027730 100644
--- a/Analysis/RValues.cpp
+++ b/Analysis/RValues.cpp
@@ -240,7 +240,7 @@
// Pretty-Printing.
//===----------------------------------------------------------------------===//
-void RValue::print() const {
+void RValue::printStdErr() const {
print(*llvm::cerr.stream());
}