Add missing include that MSVC complains about.
authorBenjamin Kramer <benny.kra@googlemail.com>
Mon, 23 Mar 2015 18:19:41 +0000 (18:19 +0000)
committerBenjamin Kramer <benny.kra@googlemail.com>
Mon, 23 Mar 2015 18:19:41 +0000 (18:19 +0000)
Also reorder includes a bit, NFC.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@232980 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Support/RandomNumberGenerator.cpp

index 294313769bf9b4434332b60ac249b6ef8c2411ec..81d0411d60b465920322cf4b515a0f8f488eb00a 100644 (file)
 //
 //===----------------------------------------------------------------------===//
 
-#define DEBUG_TYPE "rng"
+#include "llvm/Support/RandomNumberGenerator.h"
 #include "llvm/Support/CommandLine.h"
 #include "llvm/Support/Debug.h"
-#include "llvm/Support/RandomNumberGenerator.h"
+#include "llvm/Support/raw_ostream.h"
 
 using namespace llvm;
 
+#define DEBUG_TYPE "rng"
+
 // Tracking BUG: 19665
 // http://llvm.org/bugs/show_bug.cgi?id=19665
 //