mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-05 12:31:46 +00:00
Add operator!= as the compliment to operator==. This is for a future change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184348 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d626d33246
commit
2e1dc2d265
@ -204,7 +204,10 @@ namespace llvm {
|
|||||||
/// the value of this option.
|
/// the value of this option.
|
||||||
FPOpFusion::FPOpFusionMode AllowFPOpFusion;
|
FPOpFusion::FPOpFusionMode AllowFPOpFusion;
|
||||||
|
|
||||||
bool operator==(const TargetOptions &);
|
bool operator==(const TargetOptions &TM);
|
||||||
|
bool operator!=(const TargetOptions &TM) {
|
||||||
|
return !(*this == TM);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
} // End llvm namespace
|
} // End llvm namespace
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user