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:
Bill Wendling 2013-06-19 20:50:12 +00:00
parent d626d33246
commit 2e1dc2d265

View File

@ -204,7 +204,10 @@ namespace llvm {
/// the value of this option.
FPOpFusion::FPOpFusionMode AllowFPOpFusion;
bool operator==(const TargetOptions &);
bool operator==(const TargetOptions &TM);
bool operator!=(const TargetOptions &TM) {
return !(*this == TM);
}
};
} // End llvm namespace