summaryrefslogtreecommitdiff
path: root/include/llvm/Analysis/ProfileInfo.h
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-08-08 18:59:03 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-08-08 18:59:03 +0000
commitc43782cf7163805fb6d727382b5f807ea035b2b0 (patch)
tree6d66db6a874af9d7c48d4357655665c547c1ffd0 /include/llvm/Analysis/ProfileInfo.h
parent55e354ac0e294bde258420f80a2cc11ea19db482 (diff)
downloadllvm-c43782cf7163805fb6d727382b5f807ea035b2b0.tar.gz
llvm-c43782cf7163805fb6d727382b5f807ea035b2b0.tar.bz2
llvm-c43782cf7163805fb6d727382b5f807ea035b2b0.tar.xz
Some ProfileInfo cleanups.
- Part of optimal static profiling patch sequence by Andreas Neustifter. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78485 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis/ProfileInfo.h')
-rw-r--r--include/llvm/Analysis/ProfileInfo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Analysis/ProfileInfo.h b/include/llvm/Analysis/ProfileInfo.h
index 3b76ef9456..9b692515f3 100644
--- a/include/llvm/Analysis/ProfileInfo.h
+++ b/include/llvm/Analysis/ProfileInfo.h
@@ -67,7 +67,7 @@ namespace llvm {
// getEdge() - Creates an Edge from two BasicBlocks.
static Edge getEdge(const BasicBlock* Src, const BasicBlock* Dest) {
- return std::make_pair(Src,Dest);
+ return std::make_pair(Src, Dest);
}
//===------------------------------------------------------------------===//