mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-21 01:06:46 +00:00
Correct a typo, s/hosting/hoisting/
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@295066 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
270ca404ab
commit
24ee76184b
@ -847,7 +847,7 @@ static bool hoist(Instruction &I, const DominatorTree *DT, const Loop *CurLoop,
|
||||
DEBUG(dbgs() << "LICM hoisting to " << Preheader->getName() << ": " << I
|
||||
<< "\n");
|
||||
ORE->emit(OptimizationRemark(DEBUG_TYPE, "Hoisted", &I)
|
||||
<< "hosting " << ore::NV("Inst", &I));
|
||||
<< "hoisting " << ore::NV("Inst", &I));
|
||||
|
||||
// Metadata can be dependent on conditions we are hoisting above.
|
||||
// Conservatively strip all metadata on the instruction unless we were
|
||||
|
@ -53,7 +53,7 @@ Loop:
|
||||
%j = phi i32 [ 0, %Entry ], [ %Next, %Loop ]
|
||||
%addr = getelementptr i32, i32* %array, i32 %j
|
||||
%a = load i32, i32* %addr
|
||||
; CHECK: remark: /tmp/kk.c:2:20: hosting load
|
||||
; CHECK: remark: /tmp/kk.c:2:20: hoisting load
|
||||
%b = load i32, i32* %p, !dbg !8
|
||||
%a2 = add i32 %a, %b
|
||||
store i32 %a2, i32* %addr
|
||||
|
@ -10,7 +10,7 @@ Loop:
|
||||
%j = phi i32 [ 0, %Entry ], [ %Next, %Loop ]
|
||||
%addr = getelementptr i32, i32* %array, i32 %j
|
||||
%a = load i32, i32* %addr
|
||||
; CHECK: remark: /tmp/kk.c:2:20: hosting load
|
||||
; CHECK: remark: /tmp/kk.c:2:20: hoisting load
|
||||
%b = load i32, i32* %p, !dbg !8
|
||||
%a2 = add i32 %a, %b
|
||||
store i32 %a2, i32* %addr
|
||||
|
Loading…
x
Reference in New Issue
Block a user