Skip to content
Snippets Groups Projects
Commit 3e95e7c9 authored by Reid Spencer's avatar Reid Spencer
Browse files

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
parent 9904928e
No related branches found
No related tags found
No related merge requests found
...@@ -40,7 +40,7 @@ class SymbolTable; ...@@ -40,7 +40,7 @@ class SymbolTable;
/// Value - The base class of all values computed by a program that may be used /// Value - The base class of all values computed by a program that may be used
/// as operands to other values. /// as operands to other values.
/// ///
struct Value { class Value {
private: private:
unsigned SubclassID; // Subclass identifier (for isa/dyn_cast) unsigned SubclassID; // Subclass identifier (for isa/dyn_cast)
PATypeHolder Ty; PATypeHolder Ty;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment