mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-04 03:06:28 +00:00
Remove use of comma operator.
llvm-svn: 209871
This commit is contained in:
parent
cf5b9e086e
commit
2252d26c83
@ -1078,8 +1078,11 @@ void ExtAddrMode::print(raw_ostream &OS) const {
|
||||
NeedPlus = true;
|
||||
}
|
||||
|
||||
if (BaseOffs)
|
||||
OS << (NeedPlus ? " + " : "") << BaseOffs, NeedPlus = true;
|
||||
if (BaseOffs) {
|
||||
OS << (NeedPlus ? " + " : "")
|
||||
<< BaseOffs;
|
||||
NeedPlus = true;
|
||||
}
|
||||
|
||||
if (BaseReg) {
|
||||
OS << (NeedPlus ? " + " : "")
|
||||
|
Loading…
x
Reference in New Issue
Block a user