summaryrefslogtreecommitdiff
path: root/include/llvm-c
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2014-05-13 18:45:48 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2014-05-13 18:45:48 +0000
commit834384bf5bd3c104e352d3ef4956541f5932529c (patch)
tree18e02100b208273cba116c513d703b94faf4e8c9 /include/llvm-c
parentebfe1f0371a074c771d0fedf9167977bfe6f72e8 (diff)
downloadllvm-834384bf5bd3c104e352d3ef4956541f5932529c.tar.gz
llvm-834384bf5bd3c104e352d3ef4956541f5932529c.tar.bz2
llvm-834384bf5bd3c104e352d3ef4956541f5932529c.tar.xz
Split GlobalValue into GlobalValue and GlobalObject.
This allows code to statically accept a Function or a GlobalVariable, but not an alias. This is already a cleanup by itself IMHO, but the main reason for it is that it gives a lot more confidence that the refactoring to fix the design of GlobalAlias is correct. That will be a followup patch. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208716 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm-c')
-rw-r--r--include/llvm-c/Core.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/llvm-c/Core.h b/include/llvm-c/Core.h
index f7121a5c61..cd9263d491 100644
--- a/include/llvm-c/Core.h
+++ b/include/llvm-c/Core.h
@@ -1173,9 +1173,10 @@ LLVMTypeRef LLVMX86MMXType(void);
macro(ConstantStruct) \
macro(ConstantVector) \
macro(GlobalValue) \
- macro(Function) \
macro(GlobalAlias) \
- macro(GlobalVariable) \
+ macro(GlobalObject) \
+ macro(Function) \
+ macro(GlobalVariable) \
macro(UndefValue) \
macro(Instruction) \
macro(BinaryOperator) \