aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2009-05-30 00:58:37 +0000
committerBill Wendling <isanbard@gmail.com>2009-05-30 00:58:37 +0000
commit4d4eab219a96203f58452b39b4e94e234dfe4007 (patch)
tree10a189f563787051ef522637bc734e1280d0f82c
parent63d6f324ca2586c6560b939a5277590b1c37c4a4 (diff)
Untabify.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72603 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/System/Atomic.h2
-rw-r--r--include/llvm/Target/TargetRegisterInfo.h12
2 files changed, 7 insertions, 7 deletions
diff --git a/include/llvm/System/Atomic.h b/include/llvm/System/Atomic.h
index f6cac962e7..cb9277cc35 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 6cd664e88c..0218bfdb2a 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;