From c1b9bff66d050170243dc3edaa563609d1f2e301 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Sat, 30 May 2009 00:58:37 +0000 Subject: [PATCH] Untabify. llvm-svn: 72603 --- llvm/include/llvm/System/Atomic.h | 2 +- llvm/include/llvm/Target/TargetRegisterInfo.h | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/llvm/include/llvm/System/Atomic.h b/llvm/include/llvm/System/Atomic.h index f6cac962e790..cb9277cc35ec 100644 --- a/llvm/include/llvm/System/Atomic.h +++ b/llvm/include/llvm/System/Atomic.h @@ -22,7 +22,7 @@ namespace llvm { typedef uint32_t cas_flag; cas_flag CompareAndSwap(volatile cas_flag* ptr, - cas_flag new_value, + cas_flag new_value, cas_flag old_value); } } diff --git a/llvm/include/llvm/Target/TargetRegisterInfo.h b/llvm/include/llvm/Target/TargetRegisterInfo.h index 6cd664e88c3f..0218bfdb2ae3 100644 --- a/llvm/include/llvm/Target/TargetRegisterInfo.h +++ b/llvm/include/llvm/Target/TargetRegisterInfo.h @@ -284,10 +284,10 @@ protected: int CallFrameDestroyOpcode = -1, const unsigned* subregs = 0, const unsigned subregsize = 0, - const unsigned* superregs = 0, - const unsigned superregsize = 0, - const unsigned* aliases = 0, - const unsigned aliasessize = 0); + const unsigned* superregs = 0, + const unsigned superregsize = 0, + const unsigned* aliases = 0, + const unsigned aliasessize = 0); virtual ~TargetRegisterInfo(); public: @@ -392,9 +392,9 @@ public: size_t index = (regA + regB * 37) & (AliasesHashSize-1); unsigned ProbeAmt = 0; while (AliasesHash[index*2] != 0 && - AliasesHash[index*2+1] != 0) { + AliasesHash[index*2+1] != 0) { if (AliasesHash[index*2] == regA && AliasesHash[index*2+1] == regB) - return true; + return true; index = (index + ProbeAmt) & (AliasesHashSize-1); ProbeAmt += 2;