view gen/linkage.h @ 1373:551b01341728

Remove an incorrect attribute: `noalias` doesn't apply to struct types, even if we prefer to think of that type as an array :(.
author Frits van Bommel <fvbommel wxs.nl>
date Sun, 17 May 2009 02:22:21 +0200
parents 3647bef175d7
children 11b122f92136
line wrap: on
line source

#ifndef LDC_GEN_LINKAGE_H
#define LDC_GEN_LINKAGE_H

// Make it easier to test new linkage types

#  define TEMPLATE_LINKAGE_TYPE         llvm::GlobalValue::LinkOnceODRLinkage
#  define TYPEINFO_LINKAGE_TYPE         llvm::GlobalValue::LinkOnceODRLinkage
// The One-Definition-Rule shouldn't matter for debug info, right?
#  define DEBUGINFO_LINKONCE_LINKAGE_TYPE \
                                        llvm::GlobalValue::LinkOnceAnyLinkage


#endif