Displaying 8 results from an estimated 8 matches for "c4099".
Did you mean:
4099
2008 Nov 13
0
[LLVMdev] 'struct' now seen using 'class'
...ake files
(didn't spend time to figure out why), following which CMake produced a
nice working Visual Studio 2008 solution file. I opened this up in VS
2008 Express and everything seems to build properly except for the
following errors:
1>c:\llvm\utils\tablegen\TGParser.h(69) : warning C4099:
'llvm::SubClassReference' : type name first seen using 'struct' now seen
using 'class'
1> c:\llvm\utils\tablegen\TGParser.h(26) : see declaration of
'llvm::SubClassReference'
1>c:\llvm\utils\tablegen\Record.h(38) : warning C4099: 'llvm::Init'...
2009 May 12
1
[LLVMdev] SparseBitVector compile warning
The warning is:
R:\SDKs\llvm\trunk\include\llvm/ADT/SparseBitVector.h(58) : warning
C4099: 'llvm::ilist_sentinel_traits<llvm::SparseBitVectorElement<ElementSize>>'
: type name first seen using 'struct' now seen using 'class'
R:\SDKs\llvm\trunk\include\llvm/ADT/SparseBitVector.h(275) :
see reference to class template instantiation
'llvm::Sp...
2009 May 12
1
[LLVMdev] MachineJumpTableInfo.h Warning
Another warning:
r:\sdks\llvm\trunk\lib\target\x86\asmprinter\X86ATTAsmPrinter.h(29) :
warning C4099: 'llvm::MachineJumpTableInfo' : type name first seen
using 'class' now seen using 'struct'
R:\SDKs\llvm\trunk\include\llvm/CodeGen/MachineFunction.h(34)
: see declaration of 'llvm::MachineJumpTableInfo'
The problem appears to be in file MachineJumpTableInfo...
2009 May 12
0
[LLVMdev] LibCallAliasAnalysis.h
A warning:
R:\SDKs\llvm\trunk\include\llvm/Analysis/LibCallSemantics.h(63) :
warning C4099: 'llvm::LibCallFunctionInfo' : type name first seen
using 'class' now seen using 'struct'
R:\SDKs\llvm\trunk\include\llvm/Analysis/LibCallAliasAnalysis.h(22)
: see declaration of 'llvm::LibCallFunctionInfo'
The problem line appears to be in file LibCallAlias...
2009 May 27
0
[LLVMdev] Build fails on windows using VS2008
Hello
The current svn revision fails to compile on windows using Visual Studio
2008.
I'm getting:
1>ScalarEvolutionExpander.cpp
1>F:\dev\llvm\include\llvm/Analysis/ScalarEvolutionExpander.h(29) : warning
C4099: 'llvm::SCEVExpander' : type name first seen using 'class' now seen
using 'struct'
1> F:\dev\llvm\include\llvm/Analysis/ScalarEvolution.h(216) : see
declaration of 'llvm::SCEVExpander'
1>..\..\..\lib\Analysis\ScalarEvolutionExpander.cpp(446) : error C207...
2009 Oct 27
1
[LLVMdev] Remove class/struct DenseMapInfo mix
Hello
Visual Studio is complaining about the mix of struct and class.
2>C:\dev\llvm\include\llvm/ADT/ValueMap.h(202) : warning C4099:
'llvm::DenseMapInfo<llvm::ValueMapCallbackVH<KeyT,ValueT,Config,ValueInfoT>>'
: type name first seen using 'struct' now seen using 'class'
2> C:\dev\llvm\include\llvm/ADT/ValueMap.h(251) : see reference to
class template instantiation
'llvm::ValueM...
2009 Dec 08
0
[LLVMdev] VC++ warnings (was: Macro redefinitions)
OvermindDL1 <overminddl1 at gmail.com> writes:
[snip]
> If you are curious, the remaining non-pedantic warnings are:
>
> An actual warning that should be fixed:
> 4>r:\sdks\llvm\trunk\utils\tablegen\CodeGenDAGPatterns.h(27) : warning
> C4099: 'llvm::Init' : type name first seen using 'class' now seen
> using 'struct'
[snipped some more warnings]
> The rest of the project compiles clean in non-pedantic mode, quite
> wonderful. :)
Not so wonderful. Lots of warnings are disabled:
add_llvm_definition...
2009 Dec 07
2
[LLVMdev] Macro redefinitions
In DataTypes.h starting on line 121 are these lines:
#define INT8_C(C) C
#define UINT8_C(C) C
#define INT16_C(C) C
#define UINT16_C(C) C
#define INT32_C(C) C
#define UINT32_C(C) C ## U
#define INT64_C(C) ((int64_t) C ## LL)
#define UINT64_C(C) ((uint64_t) C ## ULL)
They are conflicting with the cstdint when we have updated headers in
our MSVC build. I could have sworn I talked about this