mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Silence the new -Wempty-body warning. It appeared because the next statement
after the `for(...) ;' has more indentation than for itself. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150516 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
010ad7d353
commit
c50b433989
@ -84,7 +84,8 @@ public:
|
||||
|
||||
// Loop through the basic block until we find A or B.
|
||||
MachineBasicBlock::iterator I = BBA->begin();
|
||||
for (; &*I != A && &*I != B; ++I) /*empty*/;
|
||||
for (; &*I != A && &*I != B; ++I)
|
||||
/*empty*/ ;
|
||||
|
||||
//if(!DT.IsPostDominators) {
|
||||
// A dominates B if it is found first in the basic block.
|
||||
|
Loading…
x
Reference in New Issue
Block a user