mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-17 18:24:34 +00:00
"LLVMContext* " --> "LLVMContext *"
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74878 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -183,7 +183,7 @@ namespace {
|
||||
///
|
||||
AliasSetTracker *AST;
|
||||
|
||||
LLVMContext* Context;
|
||||
LLVMContext *Context;
|
||||
|
||||
/// AllocaLookup - Reverse mapping of Allocas.
|
||||
///
|
||||
@@ -216,7 +216,7 @@ namespace {
|
||||
public:
|
||||
PromoteMem2Reg(const std::vector<AllocaInst*> &A, DominatorTree &dt,
|
||||
DominanceFrontier &df, AliasSetTracker *ast,
|
||||
LLVMContext* C)
|
||||
LLVMContext *C)
|
||||
: Allocas(A), DT(dt), DF(df), AST(ast), Context(C) {}
|
||||
|
||||
void run();
|
||||
@@ -999,7 +999,7 @@ NextIteration:
|
||||
///
|
||||
void llvm::PromoteMemToReg(const std::vector<AllocaInst*> &Allocas,
|
||||
DominatorTree &DT, DominanceFrontier &DF,
|
||||
LLVMContext* Context, AliasSetTracker *AST) {
|
||||
LLVMContext *Context, AliasSetTracker *AST) {
|
||||
// If there is nothing to do, bail out...
|
||||
if (Allocas.empty()) return;
|
||||
|
||||
|
Reference in New Issue
Block a user