diff options
author | Ahmed Bougacha <ahmed.bougacha@gmail.com> | 2016-07-14 14:52:55 +0000 |
---|---|---|
committer | Ahmed Bougacha <ahmed.bougacha@gmail.com> | 2016-07-14 14:52:55 +0000 |
commit | 35e67e1b1f1a28106ce6c6f080a7102cb2863aa6 (patch) | |
tree | 7742444dc9beee06861fc195bdaf28751b08504f /llvm/lib/CodeGen/GlobalISel/RegisterBankInfo.cpp | |
parent | 7a2a323feb5509779f8fc15d0911aa78d297abf1 (diff) | |
download | bcm5719-llvm-35e67e1b1f1a28106ce6c6f080a7102cb2863aa6.tar.gz bcm5719-llvm-35e67e1b1f1a28106ce6c6f080a7102cb2863aa6.zip |
[GlobalISel] Fix #include ordering/spacing. NFC.
llvm-svn: 275423
Diffstat (limited to 'llvm/lib/CodeGen/GlobalISel/RegisterBankInfo.cpp')
-rw-r--r-- | llvm/lib/CodeGen/GlobalISel/RegisterBankInfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/GlobalISel/RegisterBankInfo.cpp b/llvm/lib/CodeGen/GlobalISel/RegisterBankInfo.cpp index 6173369f9cc..ef8e4f6d685 100644 --- a/llvm/lib/CodeGen/GlobalISel/RegisterBankInfo.cpp +++ b/llvm/lib/CodeGen/GlobalISel/RegisterBankInfo.cpp @@ -10,11 +10,11 @@ /// This file implements the RegisterBankInfo class. //===----------------------------------------------------------------------===// -#include "llvm/CodeGen/GlobalISel/RegisterBank.h" +#include "llvm/CodeGen/GlobalISel/RegisterBankInfo.h" #include "llvm/ADT/SmallString.h" #include "llvm/ADT/SmallVector.h" #include "llvm/ADT/iterator_range.h" -#include "llvm/CodeGen/GlobalISel/RegisterBankInfo.h" +#include "llvm/CodeGen/GlobalISel/RegisterBank.h" #include "llvm/CodeGen/MachineBasicBlock.h" #include "llvm/CodeGen/MachineFunction.h" #include "llvm/CodeGen/MachineRegisterInfo.h" |