1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Add a comment.

llvm-svn: 80749
This commit is contained in:
Dan Gohman 2009-09-02 01:14:16 +00:00
parent 8dfa4a30bf
commit 076277763d

View File

@ -231,6 +231,9 @@ public:
/// cause a degenerate basic block to be formed, having a terminator inside of
/// the basic block).
///
/// Also note that this doesn't preserve any passes. To split blocks while
/// keeping loop information consistent, use the SplitBlock utility function.
///
BasicBlock *splitBasicBlock(iterator I, const Twine &BBName = "");
};