summaryrefslogtreecommitdiff
path: root/include/llvm/Constant.h
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2009-03-29 17:13:49 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2009-03-29 17:13:49 +0000
commitdb2323148b959ffcaf7a3498f94de5fa6d3e6eb7 (patch)
tree534a5c5db1a56f71f766689222713f4368689253 /include/llvm/Constant.h
parentab267a28239f628e65bef34578695d80ba6d0a9e (diff)
downloadllvm-db2323148b959ffcaf7a3498f94de5fa6d3e6eb7.tar.gz
llvm-db2323148b959ffcaf7a3498f94de5fa6d3e6eb7.tar.bz2
llvm-db2323148b959ffcaf7a3498f94de5fa6d3e6eb7.tar.xz
Honour relocation behaviour stuff for ro objects
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68005 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Constant.h')
-rw-r--r--include/llvm/Constant.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/Constant.h b/include/llvm/Constant.h
index bb1b9101c7..6025a70a88 100644
--- a/include/llvm/Constant.h
+++ b/include/llvm/Constant.h
@@ -20,6 +20,7 @@ namespace llvm {
template<typename T> class SmallVectorImpl;
namespace Reloc {
+ const unsigned None = 0;
const unsigned Local = 1 << 0; ///< Local relocations are required
const unsigned Global = 1 << 1; ///< Global relocations are required
const unsigned LocalOrGlobal = Local | Global;