diff options
author | Andrew Trick <atrick@apple.com> | 2013-07-30 19:59:15 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2013-07-30 19:59:15 +0000 |
commit | 9b866051e5bee2aa8e6b65392bc58f0311c3b377 (patch) | |
tree | fa24b8461d07a29db71e4dbe194519aaed01c089 /llvm/include | |
parent | 9c17eab7615a0cad46da953684761a541831656a (diff) | |
download | bcm5719-llvm-9b866051e5bee2aa8e6b65392bc58f0311c3b377.tar.gz bcm5719-llvm-9b866051e5bee2aa8e6b65392bc58f0311c3b377.zip |
whitespace
llvm-svn: 187437
Diffstat (limited to 'llvm/include')
-rw-r--r-- | llvm/include/llvm/CodeGen/SlotIndexes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/CodeGen/SlotIndexes.h b/llvm/include/llvm/CodeGen/SlotIndexes.h index 676cdaf7fbf..1c7bdb2e586 100644 --- a/llvm/include/llvm/CodeGen/SlotIndexes.h +++ b/llvm/include/llvm/CodeGen/SlotIndexes.h @@ -59,7 +59,7 @@ namespace llvm { // poisoned, so that dangling SlotIndex access can be reliably detected. void setPoison() { intptr_t tmp = reinterpret_cast<intptr_t>(mi); - assert(((tmp & 0x1) == 0x0) && "Pointer already poisoned?"); + assert(((tmp & 0x1) == 0x0) && "Pointer already poisoned?"); tmp |= 0x1; mi = reinterpret_cast<MachineInstr*>(tmp); } @@ -672,7 +672,7 @@ namespace llvm { /// performance. Any remaining SlotIndex objects that point to the same /// index are left 'dangling' (much the same as a dangling pointer to a /// freed object) and should not be accessed, except to destruct them. - /// + /// /// Like dangling pointers, access to dangling SlotIndexes can cause /// painful-to-track-down bugs, especially if the memory for the index /// previously pointed to has been re-used. To detect dangling SlotIndex |