1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

Order #includes alphabetically, local .h files first.

llvm-svn: 16153
This commit is contained in:
Misha Brukman 2004-09-03 18:25:53 +00:00
parent 0c50e0f211
commit 73837314b6

View File

@ -17,6 +17,7 @@
#define DEBUG_TYPE "liveintervals"
#include "LiveIntervalAnalysis.h"
#include "VirtRegMap.h"
#include "llvm/Value.h"
#include "llvm/Analysis/LoopInfo.h"
#include "llvm/CodeGen/LiveVariables.h"
@ -31,10 +32,8 @@
#include "llvm/Support/Debug.h"
#include "llvm/ADT/Statistic.h"
#include "llvm/ADT/STLExtras.h"
#include "VirtRegMap.h"
#include <cmath>
#include <algorithm>
#include <cmath>
using namespace llvm;
namespace {