Skip to content

Commit 8233529

Browse files
author
Akash Agrawal
committed
Addressing comments - Adding the main module header file at top & removed other instance
Change-Id: Ib9c54d7e7ff459d69df90e1783b5a6860d1d2907
1 parent 6e0ee6e commit 8233529

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

llvm/lib/IR/ProfDataUtils.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,15 @@
1010
//
1111
//===----------------------------------------------------------------------===//
1212

13+
#include "llvm/IR/ProfDataUtils.h"
14+
1315
#include "llvm/ADT/SmallVector.h"
1416
#include "llvm/IR/Constants.h"
1517
#include "llvm/IR/Function.h"
1618
#include "llvm/IR/Instructions.h"
1719
#include "llvm/IR/LLVMContext.h"
1820
#include "llvm/IR/MDBuilder.h"
1921
#include "llvm/IR/Metadata.h"
20-
#include "llvm/IR/ProfDataUtils.h"
2122

2223
using namespace llvm;
2324

llvm/lib/Transforms/IPO/StripSymbols.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
//
2020
//===----------------------------------------------------------------------===//
2121

22+
#include "llvm/Transforms/IPO/StripSymbols.h"
23+
2224
#include "llvm/ADT/SmallPtrSet.h"
2325
#include "llvm/IR/Constants.h"
2426
#include "llvm/IR/DebugInfo.h"
@@ -32,7 +34,6 @@
3234
#include "llvm/IR/ValueSymbolTable.h"
3335
#include "llvm/Support/Casting.h"
3436
#include "llvm/Support/CommandLine.h"
35-
#include "llvm/Transforms/IPO/StripSymbols.h"
3637
#include "llvm/Transforms/Utils/Local.h"
3738

3839
using namespace llvm;

0 commit comments

Comments
 (0)