diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-06-30 22:11:03 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-06-30 22:11:03 +0000 |
commit | d2d5df207a60f4ad74fcf5f9485b92e84d3da9bf (patch) | |
tree | d0894d438d3fe3f98f03727798ddcbb7b92a8c64 /lib/Target/Sparc/InstSelectSimple.cpp | |
parent | c661c3001ce27bd6c6a2035a3ad68d0530f00269 (diff) |
Fix indentation to be 2 spaces.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14512 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Sparc/InstSelectSimple.cpp')
-rw-r--r-- | lib/Target/Sparc/InstSelectSimple.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/Target/Sparc/InstSelectSimple.cpp b/lib/Target/Sparc/InstSelectSimple.cpp index 3ad9aa70bb..20a27d3f19 100644 --- a/lib/Target/Sparc/InstSelectSimple.cpp +++ b/lib/Target/Sparc/InstSelectSimple.cpp @@ -945,14 +945,14 @@ void V8ISel::visitSetCondInst(SetCondInst &I) { case Instruction::SetGE: BranchIdx = 5; break; } static unsigned OpcodeTab[12] = { - // LLVM SparcV8 - // unsigned signed - V8::BE, V8::BE, // seteq = be be - V8::BNE, V8::BNE, // setne = bne bne - V8::BCS, V8::BL, // setlt = bcs bl - V8::BGU, V8::BG, // setgt = bgu bg - V8::BLEU, V8::BLE, // setle = bleu ble - V8::BCC, V8::BGE // setge = bcc bge + // LLVM SparcV8 + // unsigned signed + V8::BE, V8::BE, // seteq = be be + V8::BNE, V8::BNE, // setne = bne bne + V8::BCS, V8::BL, // setlt = bcs bl + V8::BGU, V8::BG, // setgt = bgu bg + V8::BLEU, V8::BLE, // setle = bleu ble + V8::BCC, V8::BGE // setge = bcc bge }; unsigned Opcode = OpcodeTab[2*BranchIdx + (Ty->isSigned() ? 1 : 0)]; |