Displaying 20 results from an estimated 27 matches for "_ty".
Did you mean:
_ti
2005 Mar 10
2
[LLVMdev] Errors building llvm with Visual Studio in Debug mode
...-hand
operand of type '`anonymous-namespace'::Relation' (or there is no
acceptable conversion)
c:\Program Files\Microsoft Visual Studio
8\VC\include\algorithm(1385) : see reference to function template
instantiation 'bool
std::_Debug_lt<`anonymous-namespace'::Relation,_Ty>(_Ty1,_Ty2,const
char *)' being compiled
with
[
_Ty=llvm::Value *,
_Ty1=`anonymous-namespace'::Relation,
_Ty2=llvm::Value *
]
c:\Program Files\Microsoft Visual Studio
8\VC\include\algorithm(1397) : see reference to funct...
2005 Mar 10
0
[LLVMdev] Errors building llvm with Visual Studio in Debug mode
...e '`anonymous-namespace'::Relation' (or there is no
>acceptable conversion)
> c:\Program Files\Microsoft Visual Studio
>8\VC\include\algorithm(1385) : see reference to function template
>instantiation 'bool
>std::_Debug_lt<`anonymous-namespace'::Relation,_Ty>(_Ty1,_Ty2,const
>char *)' being compiled
> with
> [
> _Ty=llvm::Value *,
> _Ty1=`anonymous-namespace'::Relation,
> _Ty2=llvm::Value *
> ]
> c:\Program Files\Microsoft Visual Studio
>8\VC\include\algo...
2010 Oct 05
4
[LLVMdev] MS VS2010 std implementation: "Cannot assign iterators to two different blocks!"
...assert(Term == I.Term &&"Cannot assign iterators to two different
blocks!");
idx = I.idx;
return *this;
}
For copy construction, MS VS2010 std reserves the right, and sometimes
calls,
a method to reverse elements which does so by swap:
template<class _Ty> inline
void swap(_Ty& _Left, _Ty& _Right)
{ // exchange values stored at _Left and _Right
_Ty _Tmp = _Move(_Left);
_Left = _Move(_Right); <<<<<<<<<<<<< Needs FULL assignment operator!!!!
_Right = _Move(_Tmp);
}
Whe...
2015 Mar 09
2
[LLVMdev] LLVM 3.6: problems building on Windows using MSVC 2013
....obj
/Fdsrc\plugins\thirdParty\LLVM\CMakeFiles\LLVMPlugin.dir\ /FS -c
..\src\plugins\thirdParty\LLVM\tools\clang\lib\Driver\Compilation.cpp
C:\Program Files (x86)\Microsoft Visual Studio
12.0\VC\INCLUDE\xutility(2045) : error C2280:
'std::unique_ptr<clang::driver::Job,std::default_delete<_Ty>>
&std::unique_ptr<_Ty,std::default_delete<_Ty>>::operator =(const
std::unique_ptr<_Ty,std::default_delete<_Ty>> &)' : attempting to reference
a deleted function
with
[
_Ty=clang::driver::Job
]
C:\Program Fil...
2010 Oct 21
1
[LLVMdev] MS VS2010 std implementation: "Cannot assign iterators to two different blocks!"
Michael,
Yes, while stepping through this VS2010 `std::swap` code, `_Move` did nothing, e.g.
////////////////////////////////////////////////////
void swap(_Ty& _Left, _Ty& _Right)
{ // exchange values stored at _Left and _Right
_Ty _Tmp = _Move(_Left);
_Left = _Move(_Right);
_Right = _Move(_Tmp);
}
////////////////////////////////////////////////////
was equivalent to:
////////////////////////////////////////////////////
void swap(_Ty&am...
2017 Apr 10
2
clang build failures using Visual Studio
...o<const llvm::Record *>
]
c:\program files (x86)\microsoft visual
studio\2017\community\VC\Tools\MSVC\14.10.25017\include\vector(1859): note:
see reference to function template instantiation '_FwdIt
**std::_Uninitialized_copy<_Iter,const
llvm::Record**,std::allocator<_Ty>>(_InIt,_InIt,_FwdIt,std::_Wrap_alloc<std::allocator<_Ty>>
&)' being compiled
with
[
_FwdIt=const llvm::Record **,
_Iter=llvm::detail::DenseSetImpl<const llvm::Record
*,llvm::DenseMap<const llvm::Record
*,llvm::...
2015 Mar 09
2
[LLVMdev] LLVM 3.6: problems building on Windows using MSVC 2013
....obj /Fdsrc\plugins\thirdParty\LLVM\CMakeFiles\LLVMPlugin.dir\ /FS -c ..\src\plugins\thirdParty\LLVM\tools\clang\lib\Driver\Compilation.cpp
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\xutility(2045) : error C2280: 'std::unique_ptr<clang::driver::Job,std::default_delete<_Ty>> &std::unique_ptr<_Ty,std::default_delete<_Ty>>::operator =(const std::unique_ptr<_Ty,std::default_delete<_Ty>> &)' : attempting to reference a deleted function
with
[
_Ty=clang::driver::Job
]
C:\Program Fil...
2010 Oct 21
0
[LLVMdev] MS VS2010 std implementation: "Cannot assign iterators to two different blocks!"
...ent
> blocks!");
>
> idx = I.idx;
>
> return *this;
>
> }
>
>
>
> For copy construction, MS VS2010 std reserves the right, and sometimes
> calls,
>
> a method to reverse elements which does so by swap:
>
>
>
> template<class _Ty> inline
>
> void swap(_Ty& _Left, _Ty& _Right)
>
> { // exchange values stored at _Left and _Right
>
> _Ty _Tmp = _Move(_Left);
This uses the compiler generated default copy constructor which does
an element by element copy.
> _Left = _Move(_Rig...
2010 Oct 20
0
[LLVMdev] MS VS2010 std implementation: "Cannot assign iterators to two different blocks!"
..."Cannot assign iterators to two different blocks!");
>
> idx = I.idx;
>
> return *this;
>
> }
>
> For copy construction, MS VS2010 std reserves the right, and sometimes calls,
>
> a method to reverse elements which does so by swap:
>
> template<class _Ty> inline
>
> void swap(_Ty& _Left, _Ty& _Right)
>
> { // exchange values stored at _Left and _Right
>
> _Ty _Tmp = _Move(_Left);
>
> _Left = _Move(_Right); <<<<<<<<<<<<< Needs FULL assignment operator!!!!
>
> _Right = _M...
2014 Aug 01
2
[LLVMdev] Clang Integration with MSVS 2013
...file included from C:\Program Files (x86)\Microsoft Visual Studio
12.0\VC\include\xutility:8:
1> In file included from C:\Program Files (x86)\Microsoft Visual Studio
12.0\VC\include\utility:8:
1>C:\Program Files (x86)\Microsoft Visual Studio
12.0\VC\include\type_traits(620,32): error : '_Ty' does not refer to a value
1> : _Cat_base<_IS_CONSTRUCTIBLE(_Ty, _Args...)>
1> ^
1> C:\Program Files (x86)\Microsoft Visual Studio
12.0\VC\include\type_traits(617,15) : note: declared here
1> template<class...
2010 Sep 07
3
[LLVMdev] MS VS2008 build fails - X86AsmParser
...hat can perform
this conversion, or the operator cannot be called
C:\dev\MSVisualStudio\VC\include\xutility(1699) : see
reference to function template instantiation 'bool
std::_Debug_lt_pred<_Pr,`anonymous-namespace'::MatchEntry,`anonymous-namespace'::MatchEntry>(_Pr,const
_Ty1 &,const _Ty2 &,const wchar_t *,unsigned int)' being compiled
with
[
_Pr=`anonymous-namespace'::LessOpcode,
_Ty1=`anonymous-namespace'::MatchEntry,
_Ty2=`anonymous-namespace'::MatchEntry
]
C:\dev\MSVisualStu...
2010 Sep 07
0
[LLVMdev] MS VS2008 build fails - X86AsmParser
...s conversion, or the operator cannot be called
> C:\dev\MSVisualStudio\VC\include\xutility(1699) : see
> reference to function template instantiation 'bool
> std::_Debug_lt_pred<_Pr,`anonymous-namespace'::MatchEntry,`anonymous-namespace'::MatchEntry>(_Pr,const
> _Ty1 &,const _Ty2 &,const wchar_t *,unsigned int)' being compiled
> with
> [
> _Pr=`anonymous-namespace'::LessOpcode,
> _Ty1=`anonymous-namespace'::MatchEntry,
> _Ty2=`anonymous-namespace'::MatchEntry
> ]
&g...
2012 Jun 24
2
[LLVMdev] Problems building LLVM under Visual Studio
...gt; with
1> [
1> IntTy=llvm::IntItem,
1> RangesCollectionTy=llvm::IntegersSubset
1> ]
1> f:\Program Files\Microsoft Visual Studio 9.0\VC\include\xmemory(154) : while compiling class template member function 'void std::allocator<_Ty>::construct(std::pair<_Ty1,_Ty2> *,const _Ty &)'
1> with
1> [
1> _Ty=std::pair<llvm::IntegersSubsetMapping<llvm::BasicBlock>::RangeEx,llvm::BasicBlock *>,
1> _Ty1=llvm::IntegersSubsetMapping<llvm::BasicBlock>::RangeE...
2011 Mar 09
0
[LLVMdev] Unable to build latest with Visual Studio 2008
...operator cannot be called
> > C:\dev\MSVisualStudio\VC\include\xutility(1699) : see
> > reference to function template instantiation 'bool
> > std::_Debug_lt_pred<_Pr,`anonymous-namespace'::MatchEntry,`anonymous-namespace'::MatchEntry>(_Pr,const
> > _Ty1 &,const _Ty2 &,const wchar_t *,unsigned int)' being compiled
> > with
> > [
> > _Pr=`anonymous-namespace'::LessOpcode,
> > _Ty1=`anonymous-namespace'::MatchEntry,
> > _Ty2=`anonymous-namespace'::Ma...
2008 Dec 05
2
[LLVMdev] Build errors on trunk for about a week now.
...its=std::_Tmap_traits<const char *,unsigned
int,`anonymous-namespace'::StrCmp,std::allocator<std::pair<const char
*const ,unsigned int>>,false>
]
..\..\..\trunk\lib\Support\Annotation.cpp(67) : see reference
to class template instantiation 'std::map<_Kty,_Ty,_Pr>' being
compiled
with
[
_Kty=const char *,
_Ty=unsigned int,
_Pr=`anonymous-namespace'::StrCmp
]
Allocator.cpp
APSInt.cpp
I cannot really look at it well since the termserv connection is
effectively less then modem speed, b...
2007 Jul 27
2
[LLVMdev] Couple of changes (2005 and other toolchain related)
...ace'::InequalityGraph::Edge)'
c:\libraries\llvm-2.0\lib\transforms\scalar\predicatesimplifier.cpp(295) : see
reference to function template instantiation '_FwdIt
std::lower_bound<`anonymous-namespace'::InequalityGraph::Node::iterator,unsigned
int>(_FwdIt,_FwdIt,const _Ty &)' being compiled
with
[
_FwdIt=`anonymous-namespace'::InequalityGraph::Node::iterator,
_Ty=unsigned int
]
This has to do with the fact that the STL debug validator checks to make sure
that if !(lhs < rhs) then (rhs < lhs || r...
2008 Dec 05
0
[LLVMdev] Build errors on trunk for about a week now.
OvermindDL1 a écrit :
> Been trying to build the trunk to test some things for about a week
> now using VS8 (VS2k5). Tons of Warnings (like things first being
> declared struct, being redefined class and so forth, those need to be
> fixed, but are otherwise not harmful), and a *lot* of errors. Being
> trunk I figured just the normal trunk-type issues, but it has been
> going on
2008 Dec 05
0
[LLVMdev] Build errors on trunk for about a week now.
...t;const char *,unsigned
> int,`anonymous-namespace'::StrCmp,std::allocator<std::pair<const char
> *const ,unsigned int>>,false>
> ]
> ..\..\..\trunk\lib\Support\Annotation.cpp(67) : see reference
> to class template instantiation 'std::map<_Kty,_Ty,_Pr>' being
> compiled
> with
> [
> _Kty=const char *,
> _Ty=unsigned int,
> _Pr=`anonymous-namespace'::StrCmp
> ]
> Allocator.cpp
> APSInt.cpp
>
> I cannot really look at it well since the termserv co...
2007 Jul 27
0
[LLVMdev] Couple of changes (2005 and other toolchain related)
...ce'::InequalityGraph::Edge)'
c:\libraries\llvm-2.0\lib\transforms\scalar\predicatesimplifier.cpp(295)
: see
reference to function template instantiation '_FwdIt
std::lower_bound<`anonymous-namespace'::InequalityGraph::Node::iterator,
unsigned
int>(_FwdIt,_FwdIt,const _Ty &)' being compiled
with
[
_FwdIt=`anonymous-namespace'::InequalityGraph::Node::iterator,
_Ty=unsigned int
]
This has to do with the fact that the STL debug validator checks to make
sure
that if !(lhs < rhs) then (rhs < lhs || rhs == lhs),...
2008 Dec 05
2
[LLVMdev] Build errors on trunk for about a week now.
Been trying to build the trunk to test some things for about a week
now using VS8 (VS2k5). Tons of Warnings (like things first being
declared struct, being redefined class and so forth, those need to be
fixed, but are otherwise not harmful), and a *lot* of errors. Being
trunk I figured just the normal trunk-type issues, but it has been
going on for a while now, so figured it would be good to