summaryrefslogtreecommitdiffstats
path: root/clang/lib/AST/StmtProfile.cpp
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2010-07-08 06:14:04 +0000
committerDouglas Gregor <dgregor@apple.com>2010-07-08 06:14:04 +0000
commit747eb7840abcb638d6bc9590b3345608286f58f0 (patch)
tree2adb6e9fe3c8847033d030094cda8b91f5bbad77 /clang/lib/AST/StmtProfile.cpp
parentbe1f7a931efed26bfa761c33202828ccef2a2adb (diff)
downloadbcm5719-llvm-747eb7840abcb638d6bc9590b3345608286f58f0.tar.gz
bcm5719-llvm-747eb7840abcb638d6bc9590b3345608286f58f0.zip
Reinstate the fix for PR7556. A silly use of isTrivial() was
suppressing copies of objects with trivial copy constructors. llvm-svn: 107857
Diffstat (limited to 'clang/lib/AST/StmtProfile.cpp')
-rw-r--r--clang/lib/AST/StmtProfile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/AST/StmtProfile.cpp b/clang/lib/AST/StmtProfile.cpp
index 4b17e5262e3..2c6918677d0 100644
--- a/clang/lib/AST/StmtProfile.cpp
+++ b/clang/lib/AST/StmtProfile.cpp
@@ -721,7 +721,7 @@ void StmtProfiler::VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *S) {
VisitCXXConstructExpr(S);
}
-void StmtProfiler::VisitCXXZeroInitValueExpr(CXXZeroInitValueExpr *S) {
+void StmtProfiler::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *S) {
VisitExpr(S);
}
OpenPOWER on IntegriCloud