Fix class description.
authorJakub Staszak <jstaszak@apple.com>
Mon, 25 Jul 2011 20:08:58 +0000 (20:08 +0000)
committerJakub Staszak <jstaszak@apple.com>
Mon, 25 Jul 2011 20:08:58 +0000 (20:08 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135948 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/BranchProbability.h

index 2e81490ebf661bfa94f0ed65577368f0085737a9..80da81b559721b6b3abcc8612767684d890a76a2 100644 (file)
@@ -1,4 +1,4 @@
-//===- BranchProbability.h - Branch Probability Analysis --------*- C++ -*-===//
+//===- BranchProbability.h - Branch Probability Wrapper ---------*- C++ -*-===//
 //
 //                     The LLVM Compiler Infrastructure
 //
@@ -34,7 +34,7 @@ public:
 
   uint32_t getNumerator() const { return N; }
   uint32_t getDenominator() const { return D; }
-  
+
   // Return (1 - Probability).
   BranchProbability getCompl() {
     return BranchProbability(D - N, D);