diff options
author | Erich Keane <erich.keane@intel.com> | 2019-05-30 15:38:02 +0000 |
---|---|---|
committer | Erich Keane <erich.keane@intel.com> | 2019-05-30 15:38:02 +0000 |
commit | d0f34fd19850c79f8741301c3bfe0312ca24324c (patch) | |
tree | d11a14843235915243dc65478eb97f80753ceb8c /clang/lib/AST/StmtProfile.cpp | |
parent | e6ddde57e27e03054fd0a7cd627ce7917559a690 (diff) | |
download | bcm5719-llvm-d0f34fd19850c79f8741301c3bfe0312ca24324c.tar.gz bcm5719-llvm-d0f34fd19850c79f8741301c3bfe0312ca24324c.zip |
Revert "clang support gnu asm goto."
This reverts commit 954ec09aed4f2be04bb5f4e10dbb4ea8bd19ef9a.
Reverting due to test failures as requested by Jennifer Yu.
Conflicts:
clang/test/CodeGen/asm-goto.c
llvm-svn: 362106
Diffstat (limited to 'clang/lib/AST/StmtProfile.cpp')
-rw-r--r-- | clang/lib/AST/StmtProfile.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/clang/lib/AST/StmtProfile.cpp b/clang/lib/AST/StmtProfile.cpp index c5da5bfda9c..93bdcac8b54 100644 --- a/clang/lib/AST/StmtProfile.cpp +++ b/clang/lib/AST/StmtProfile.cpp @@ -321,9 +321,6 @@ void StmtProfiler::VisitGCCAsmStmt(const GCCAsmStmt *S) { ID.AddInteger(S->getNumClobbers()); for (unsigned I = 0, N = S->getNumClobbers(); I != N; ++I) VisitStringLiteral(S->getClobberStringLiteral(I)); - ID.AddInteger(S->getNumLabels()); - for (auto *L : S->labels()) - VisitDecl(L->getLabel()); } void StmtProfiler::VisitMSAsmStmt(const MSAsmStmt *S) { |