diff options
author | Duncan Sands <baldrick@free.fr> | 2010-05-11 20:16:09 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2010-05-11 20:16:09 +0000 |
commit | 6c5e4355bbda4ef15dc753c140a8a04e425b806c (patch) | |
tree | 5cfe3c60863377006a0a0e31e23ab05eac6dd1fe /llvm/docs | |
parent | af260b994553b9bcccacf3b057dbfdf79a3ab4b1 (diff) | |
download | bcm5719-llvm-6c5e4355bbda4ef15dc753c140a8a04e425b806c.tar.gz bcm5719-llvm-6c5e4355bbda4ef15dc753c140a8a04e425b806c.zip |
I got tired of VISIBILITY_HIDDEN colliding with the gcc enum. Rename it
to LLVM_LIBRARY_VISIBILITY and introduce LLVM_GLOBAL_VISIBILITY, which is
the opposite, for future use by dragonegg.
llvm-svn: 103495
Diffstat (limited to 'llvm/docs')
-rw-r--r-- | llvm/docs/GarbageCollection.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/GarbageCollection.html b/llvm/docs/GarbageCollection.html index d0b651eb64d..56085ca710b 100644 --- a/llvm/docs/GarbageCollection.html +++ b/llvm/docs/GarbageCollection.html @@ -617,7 +617,7 @@ conforms to the binary interface defined by library, most essentially the using namespace llvm; namespace { - class VISIBILITY_HIDDEN MyGC : public GCStrategy { + class LLVM_LIBRARY_VISIBILITY MyGC : public GCStrategy { public: MyGC() {} }; @@ -1229,7 +1229,7 @@ generation in the JIT, nor using the object writers.</p> using namespace llvm; namespace { - class VISIBILITY_HIDDEN MyGCPrinter : public GCMetadataPrinter { + class LLVM_LIBRARY_VISIBILITY MyGCPrinter : public GCMetadataPrinter { public: virtual void beginAssembly(std::ostream &OS, AsmPrinter &AP, const TargetAsmInfo &TAI); |