mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-12 17:32:19 +00:00
[OCaml] (PR16190) Add ValueKinds for ConstantDataSequential and subclasses
Original patch by David Monniaux git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194075 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0fac3dfa41
commit
34b4a84261
@ -260,6 +260,8 @@ module ValueKind = struct
|
||||
| BlockAddress
|
||||
| ConstantAggregateZero
|
||||
| ConstantArray
|
||||
| ConstantDataArray
|
||||
| ConstantDataVector
|
||||
| ConstantExpr
|
||||
| ConstantFP
|
||||
| ConstantInt
|
||||
|
@ -323,6 +323,8 @@ module ValueKind : sig
|
||||
| BlockAddress
|
||||
| ConstantAggregateZero
|
||||
| ConstantArray
|
||||
| ConstantDataArray
|
||||
| ConstantDataVector
|
||||
| ConstantExpr
|
||||
| ConstantFP
|
||||
| ConstantInt
|
||||
|
@ -454,6 +454,8 @@ enum ValueKind {
|
||||
BlockAddress,
|
||||
ConstantAggregateZero,
|
||||
ConstantArray,
|
||||
ConstantDataArray,
|
||||
ConstantDataVector,
|
||||
ConstantExpr,
|
||||
ConstantFP,
|
||||
ConstantInt,
|
||||
@ -479,6 +481,8 @@ CAMLprim value llvm_classify_value(LLVMValueRef Val) {
|
||||
DEFINE_CASE(Val, BlockAddress);
|
||||
DEFINE_CASE(Val, ConstantAggregateZero);
|
||||
DEFINE_CASE(Val, ConstantArray);
|
||||
DEFINE_CASE(Val, ConstantDataArray);
|
||||
DEFINE_CASE(Val, ConstantDataVector);
|
||||
DEFINE_CASE(Val, ConstantExpr);
|
||||
DEFINE_CASE(Val, ConstantFP);
|
||||
DEFINE_CASE(Val, ConstantInt);
|
||||
|
Loading…
x
Reference in New Issue
Block a user