aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/AST/ByteCode/Opcodes.td
diff options
context:
space:
mode:
Diffstat (limited to 'clang/lib/AST/ByteCode/Opcodes.td')
-rw-r--r--clang/lib/AST/ByteCode/Opcodes.td4
1 files changed, 3 insertions, 1 deletions
diff --git a/clang/lib/AST/ByteCode/Opcodes.td b/clang/lib/AST/ByteCode/Opcodes.td
index abfed77..95a4433 100644
--- a/clang/lib/AST/ByteCode/Opcodes.td
+++ b/clang/lib/AST/ByteCode/Opcodes.td
@@ -412,7 +412,7 @@ def CheckDecl : Opcode {
def CheckEnumValue : Opcode {
let Args = [ArgEnumDecl];
- let Types = [FixedSizeIntegralTypeClass];
+ let Types = [IntegralTypeClass];
let HasGroup = 1;
}
@@ -735,6 +735,8 @@ def PtrPtrCast : Opcode {
}
+def FnPtrCast : Opcode;
+
def DecayPtr : Opcode {
let Types = [PtrTypeClass, PtrTypeClass];
let HasGroup = 1;