Remove redundant '== true' after a comparison.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@161223 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/utils/yaml2obj/yaml2obj.cpp b/utils/yaml2obj/yaml2obj.cpp
index eecf574..c3b3e54 100644
--- a/utils/yaml2obj/yaml2obj.cpp
+++ b/utils/yaml2obj/yaml2obj.cpp
@@ -91,7 +91,7 @@
   }
 
   bool operator ==(const hex_pair_iterator Other) {
-    return (IsDone == Other.IsDone == true) ||
+    return (IsDone == Other.IsDone) ||
            (Current == Other.Current && End == Other.End);
   }