mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Change Value from a "struct" to a "class" so that VC 7.1 doesn't generate
missing symbols when its referenced as a class. llvm-svn: 16496
This commit is contained in:
parent
6210b04509
commit
67f6472f19
@ -40,7 +40,7 @@ class SymbolTable;
|
||||
/// Value - The base class of all values computed by a program that may be used
|
||||
/// as operands to other values.
|
||||
///
|
||||
struct Value {
|
||||
class Value {
|
||||
private:
|
||||
unsigned SubclassID; // Subclass identifier (for isa/dyn_cast)
|
||||
PATypeHolder Ty;
|
||||
|
Loading…
Reference in New Issue
Block a user