diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-11-14 04:05:22 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-11-14 04:05:22 +0000 |
commit | b502e097427e853122d899362ae0a6df3a44e682 (patch) | |
tree | 8cbc8e387f91b0289645d33badde715c5138e86b /lib/Target/R600 | |
parent | 0710afb9af81cff9846ceda7b56d03cf177dd6ef (diff) | |
download | external_llvm-b502e097427e853122d899362ae0a6df3a44e682.zip external_llvm-b502e097427e853122d899362ae0a6df3a44e682.tar.gz external_llvm-b502e097427e853122d899362ae0a6df3a44e682.tar.bz2 |
Whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194661 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/R600')
-rw-r--r-- | lib/Target/R600/SIFixSGPRCopies.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Target/R600/SIFixSGPRCopies.cpp b/lib/Target/R600/SIFixSGPRCopies.cpp index 655db5b..446a9f7 100644 --- a/lib/Target/R600/SIFixSGPRCopies.cpp +++ b/lib/Target/R600/SIFixSGPRCopies.cpp @@ -23,9 +23,9 @@ /// %vreg3 <vsrc> = COPY %vreg2 <vgpr> /// BB2: /// %vreg4 <vsrc> = PHI %vreg1 <vsrc>, <BB#0>, %vreg3 <vrsc>, <BB#1> -/// %vreg5 <vgpr> = VECTOR_INST %vreg4 <vsrc> +/// %vreg5 <vgpr> = VECTOR_INST %vreg4 <vsrc> +/// /// -/// /// The coalescer will begin at BB0 and eliminate its copy, then the resulting /// code will look like this: /// @@ -43,7 +43,7 @@ /// Now that the result of the PHI instruction is an SGPR, the register /// allocator is now forced to constrain the register class of %vreg3 to /// <sgpr> so we end up with final code like this: -/// +/// /// BB0: /// %vreg0 <sgpr> = SCALAR_INST /// ... @@ -55,7 +55,7 @@ /// %vreg4 <sgpr> = PHI %vreg0 <sgpr>, <BB#0>, %vreg3 <sgpr>, <BB#1> /// %vreg5 <vgpr> = VECTOR_INST %vreg4 <sgpr> /// -/// Now this code contains an illegal copy from a VGPR to an SGPR. +/// Now this code contains an illegal copy from a VGPR to an SGPR. /// /// In order to avoid this problem, this pass searches for PHI instructions /// which define a <vsrc> register and constrains its definition class to |