From: Bill Wendling Date: Sat, 30 May 2009 00:58:37 +0000 (+0000) Subject: Untabify. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=4d4eab219a96203f58452b39b4e94e234dfe4007;p=oota-llvm.git Untabify. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72603 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/System/Atomic.h b/include/llvm/System/Atomic.h index f6cac962e79..cb9277cc35e 100644 --- a/include/llvm/System/Atomic.h +++ b/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/include/llvm/Target/TargetRegisterInfo.h b/include/llvm/Target/TargetRegisterInfo.h index 6cd664e88c3..0218bfdb2ae 100644 --- a/include/llvm/Target/TargetRegisterInfo.h +++ b/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;