diff options
author | Chris Lattner <sabre@nondot.org> | 2004-06-08 17:44:21 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-06-08 17:44:21 +0000 |
commit | 85b0195f0e619d7151824a08f33e6754a451e7fc (patch) | |
tree | 6f314b2cca682ad158a8168b51e9c0cd83010b1f /include/llvm/AbstractTypeUser.h | |
parent | ef39012738a36bd7dd0a51fd94810426978c9455 (diff) |
Apparently a particular vendor compiler uses the struct/class tag to MANGLE
symbols with. Therefore, if you do not use struct/class consistently, you can
get LINK ERRORS. grr.
This fixes the link errors for libsupport and vmcore.
-Chris
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14070 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/AbstractTypeUser.h')
-rw-r--r-- | include/llvm/AbstractTypeUser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/AbstractTypeUser.h b/include/llvm/AbstractTypeUser.h index f039eb8586..b936b45554 100644 --- a/include/llvm/AbstractTypeUser.h +++ b/include/llvm/AbstractTypeUser.h @@ -39,7 +39,7 @@ namespace llvm { -class Type; +struct Type; class DerivedType; class AbstractTypeUser { |