BranchProbability.cpp - add missing implicit cmath header dependency. NFCI.

Noticed while investigating if we can remove an unnecessary MathExtras.h include from SmallVector.h (necessary for gcc builds but not MSVC)
This commit is contained in:
Simon Pilgrim 2021-06-05 21:14:18 +01:00
parent e3ae4ce66e
commit e8423dbf35

View File

@ -16,6 +16,7 @@
#include "llvm/Support/Format.h"
#include "llvm/Support/raw_ostream.h"
#include <cassert>
#include <cmath>
using namespace llvm;