Skip to content

Commit

Permalink
[BOLT][Refactoring] Get rid of TailCallTerminatedBlocks, etc.
Browse files Browse the repository at this point in the history
Summary:
More changes to allow separation of CFG construction and
profile assignment. Misc cleanups.

(cherry picked from FBD6158653)
  • Loading branch information
maksfb committed Oct 24, 2017
1 parent c58996f commit 61e5fbf
Show file tree
Hide file tree
Showing 5 changed files with 197 additions and 190 deletions.
2 changes: 2 additions & 0 deletions bolt/BinaryBasicBlock.h
Expand Up @@ -115,6 +115,8 @@ class BinaryBasicBlock {

private:
BinaryBasicBlock() = delete;
BinaryBasicBlock(const BinaryBasicBlock &) = delete;
BinaryBasicBlock& operator=(const BinaryBasicBlock &) = delete;

explicit BinaryBasicBlock(
BinaryFunction *Function,
Expand Down

0 comments on commit 61e5fbf

Please sign in to comment.