aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Instruction.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-06-08 17:44:21 +0000
committerChris Lattner <sabre@nondot.org>2004-06-08 17:44:21 +0000
commit85b0195f0e619d7151824a08f33e6754a451e7fc (patch)
tree6f314b2cca682ad158a8168b51e9c0cd83010b1f /include/llvm/Instruction.h
parentef39012738a36bd7dd0a51fd94810426978c9455 (diff)
downloadexternal_llvm-85b0195f0e619d7151824a08f33e6754a451e7fc.zip
external_llvm-85b0195f0e619d7151824a08f33e6754a451e7fc.tar.gz
external_llvm-85b0195f0e619d7151824a08f33e6754a451e7fc.tar.bz2
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/Instruction.h')
-rw-r--r--include/llvm/Instruction.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Instruction.h b/include/llvm/Instruction.h
index caba4af..86f2a05 100644
--- a/include/llvm/Instruction.h
+++ b/include/llvm/Instruction.h
@@ -20,7 +20,7 @@
namespace llvm {
-class AssemblyAnnotationWriter;
+struct AssemblyAnnotationWriter;
template<typename SC> struct ilist_traits;
template<typename ValueSubClass, typename ItemParentClass, typename SymTabClass,