aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/ExecutionEngine/ExecutionEngine.h
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-03-06 03:01:54 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-03-06 03:01:54 +0000
commit9d87eb19be82b28d288e38eab3bbe145060a0701 (patch)
treef3c8cfeea6313d37ddd4d6e794c060fa768e9958 /include/llvm/ExecutionEngine/ExecutionEngine.h
parent7ca0689b9b3f085d398062f7f09059f7be691829 (diff)
Make GenericeValue into a struct with a union instead of just a union. This
allows an APInt value to be constructed. Remove all the native integer types from the union. These are replaced with the single IntVal of type APInt. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34945 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ExecutionEngine/ExecutionEngine.h')
-rw-r--r--include/llvm/ExecutionEngine/ExecutionEngine.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ExecutionEngine/ExecutionEngine.h b/include/llvm/ExecutionEngine/ExecutionEngine.h
index 71aa18e0e5..ab2924ef29 100644
--- a/include/llvm/ExecutionEngine/ExecutionEngine.h
+++ b/include/llvm/ExecutionEngine/ExecutionEngine.h
@@ -24,7 +24,7 @@
namespace llvm {
-union GenericValue;
+struct GenericValue;
class Constant;
class Function;
class GlobalVariable;