mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-03 22:01:56 +00:00
minor tidying of comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52630 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2f27e174a9
commit
2a6a645709
@ -313,8 +313,9 @@ void SROA::DoScalarReplacement(AllocationInst *AI,
|
||||
continue;
|
||||
}
|
||||
|
||||
// Replace %res = load { i32, i32 }* %alloc
|
||||
// by
|
||||
// Replace:
|
||||
// %res = load { i32, i32 }* %alloc
|
||||
// with:
|
||||
// %load.0 = load i32* %alloc.0
|
||||
// %insert.0 insertvalue { i32, i32 } zeroinitializer, i32 %load.0, 0
|
||||
// %load.1 = load i32* %alloc.1
|
||||
@ -331,8 +332,9 @@ void SROA::DoScalarReplacement(AllocationInst *AI,
|
||||
continue;
|
||||
}
|
||||
|
||||
// Replace store { i32, i32 } %val, { i32, i32 }* %alloc
|
||||
// by
|
||||
// Replace:
|
||||
// store { i32, i32 } %val, { i32, i32 }* %alloc
|
||||
// with:
|
||||
// %val.0 = extractvalue { i32, i32 } %val, 0
|
||||
// store i32 %val.0, i32* %alloc.0
|
||||
// %val.1 = extractvalue { i32, i32 } %val, 1
|
||||
|
Loading…
x
Reference in New Issue
Block a user