mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
we should use 'class' for non-pod types instead of 'struct' to
make it easier to deal with the VC++ struct/class bug. llvm-svn: 55290
This commit is contained in:
parent
f6e98a0f30
commit
af40013b25
@ -24,7 +24,8 @@ class BasicBlock;
|
|||||||
class Instruction;
|
class Instruction;
|
||||||
class raw_ostream;
|
class raw_ostream;
|
||||||
|
|
||||||
struct AssemblyAnnotationWriter {
|
class AssemblyAnnotationWriter {
|
||||||
|
public:
|
||||||
|
|
||||||
virtual ~AssemblyAnnotationWriter();
|
virtual ~AssemblyAnnotationWriter();
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ class TypeSymbolTable;
|
|||||||
template<typename ValueTy> class StringMapEntry;
|
template<typename ValueTy> class StringMapEntry;
|
||||||
typedef StringMapEntry<Value*> ValueName;
|
typedef StringMapEntry<Value*> ValueName;
|
||||||
class raw_ostream;
|
class raw_ostream;
|
||||||
struct AssemblyAnnotationWriter;
|
class AssemblyAnnotationWriter;
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
// Value Class
|
// Value Class
|
||||||
|
Loading…
x
Reference in New Issue
Block a user