diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2016-04-20 18:42:51 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2016-04-20 18:42:51 +0000 |
commit | 51e7adf6aaf49771c3bbb4602981031f6f803a43 (patch) | |
tree | f670ab55d0d889cbf4485730b84f1ab3b44c40d7 /llvm/lib/IR/Verifier.cpp | |
parent | bcc7f617cdba65a8f6087422a2d6148e63ecc8bc (diff) | |
download | bcm5719-llvm-51e7adf6aaf49771c3bbb4602981031f6f803a43.tar.gz bcm5719-llvm-51e7adf6aaf49771c3bbb4602981031f6f803a43.zip |
Verifier: Add ModuleSlotTracker to printAsOperand call
I missed this site in r266889.
llvm-svn: 266900
Diffstat (limited to 'llvm/lib/IR/Verifier.cpp')
-rw-r--r-- | llvm/lib/IR/Verifier.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/IR/Verifier.cpp b/llvm/lib/IR/Verifier.cpp index e643dff324c..cf507c4459c 100644 --- a/llvm/lib/IR/Verifier.cpp +++ b/llvm/lib/IR/Verifier.cpp @@ -264,7 +264,7 @@ public: if (OS) { *OS << "Basic Block in function '" << F.getName() << "' does not have terminator!\n"; - BB.printAsOperand(*OS, true); + BB.printAsOperand(*OS, true, *MST); *OS << "\n"; } return false; |