Skip to content

Commit

Permalink
[VP] Fixed copy-n-paste bugs in cfp-except registration
Browse files Browse the repository at this point in the history
  • Loading branch information
simoll committed Mar 3, 2021
1 parent a1ff962 commit f52abeb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions llvm/lib/IR/LLVMContext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,12 @@ LLVMContext::LLVMContext() : pImpl(new LLVMContextImpl(*this)) {

auto *CFPRoundEntry = pImpl->getOrInsertBundleTag("cfp-round");
assert(CFPRoundEntry->second == LLVMContext::OB_cfp_round &&
"gc-transition operand bundle id drifted!");
"cfp-round operand bundle id drifted!");
(void)CFPRoundEntry;

auto *CFPExceptEntry = pImpl->getOrInsertBundleTag("cfp-round");
assert(CFPExceptEntry->second == LLVMContext::OB_cfp_round &&
"gc-transition operand bundle id drifted!");
auto *CFPExceptEntry = pImpl->getOrInsertBundleTag("cfp-except");
assert(CFPExceptEntry->second == LLVMContext::OB_cfp_except &&
"cfp-except operand bundle id drifted!");
(void)CFPExceptEntry;

SyncScope::ID SingleThreadSSID =
Expand Down

0 comments on commit f52abeb

Please sign in to comment.