[llvm-commits] [llvm] r112257 - /llvm/trunk/tools/llvm-diff/DifferenceEngine.h
Michael J. Spencer
bigcheesegs at gmail.com
Thu Aug 26 19:49:45 PDT 2010
Author: mspencer
Date: Thu Aug 26 21:49:45 2010
New Revision: 112257
URL: http://llvm.org/viewvc/llvm-project?rev=112257&view=rev
Log:
Fix the msvs 2010 build.
The Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 16.00.30319.01
implements parts of C++0x based on the draft standard. An old version of
the draft had a bug that makes std::pair<T1*, T2*>(something, 0) fail to
compile. This is because the template<class U, class V> pair(U&& x, V&& y)
constructor is selected, even though it later fails to implicitly convert
U and V to frist_type and second_type.
This has been fixed in n3090, but it seems that Microsoft is not going to
update msvc.
Modified:
llvm/trunk/tools/llvm-diff/DifferenceEngine.h
Modified: llvm/trunk/tools/llvm-diff/DifferenceEngine.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-diff/DifferenceEngine.h?rev=112257&r1=112256&r2=112257&view=diff
==============================================================================
--- llvm/trunk/tools/llvm-diff/DifferenceEngine.h (original)
+++ llvm/trunk/tools/llvm-diff/DifferenceEngine.h Thu Aug 26 21:49:45 2010
@@ -79,8 +79,14 @@
void addMatch(Instruction *L, Instruction *R) {
Diff.push_back(DiffRecord(L, R));
}
- void addLeft(Instruction *L) { Diff.push_back(DiffRecord(L, 0)); }
- void addRight(Instruction *R) { Diff.push_back(DiffRecord(0, R)); }
+ void addLeft(Instruction *L) {
+ // HACK: VS 2010 has a bug in the stdlib that requires this.
+ Diff.push_back(DiffRecord(L, DiffRecord::second_type(0)));
+ }
+ void addRight(Instruction *R) {
+ // HACK: VS 2010 has a bug in the stdlib that requires this.
+ Diff.push_back(DiffRecord(DiffRecord::first_type(0), R));
+ }
unsigned getNumLines() const { return Diff.size(); }
DiffChange getLineKind(unsigned I) const {
More information about the llvm-commits
mailing list