@@ -51,6 +51,9 @@ public static unsafe partial class LLVM
51
51
[ DllImport ( "libLLVM" , CallingConvention = CallingConvention . Cdecl , EntryPoint = "LLVMInitializeSystemZTargetInfo" , ExactSpelling = true ) ]
52
52
public static extern void InitializeSystemZTargetInfo ( ) ;
53
53
54
+ [ DllImport ( "libLLVM" , CallingConvention = CallingConvention . Cdecl , EntryPoint = "LLVMInitializeVETargetInfo" , ExactSpelling = true ) ]
55
+ public static extern void InitializeVETargetInfo ( ) ;
56
+
54
57
[ DllImport ( "libLLVM" , CallingConvention = CallingConvention . Cdecl , EntryPoint = "LLVMInitializeWebAssemblyTargetInfo" , ExactSpelling = true ) ]
55
58
public static extern void InitializeWebAssemblyTargetInfo ( ) ;
56
59
@@ -102,6 +105,9 @@ public static unsafe partial class LLVM
102
105
[ DllImport ( "libLLVM" , CallingConvention = CallingConvention . Cdecl , EntryPoint = "LLVMInitializeSystemZTarget" , ExactSpelling = true ) ]
103
106
public static extern void InitializeSystemZTarget ( ) ;
104
107
108
+ [ DllImport ( "libLLVM" , CallingConvention = CallingConvention . Cdecl , EntryPoint = "LLVMInitializeVETarget" , ExactSpelling = true ) ]
109
+ public static extern void InitializeVETarget ( ) ;
110
+
105
111
[ DllImport ( "libLLVM" , CallingConvention = CallingConvention . Cdecl , EntryPoint = "LLVMInitializeWebAssemblyTarget" , ExactSpelling = true ) ]
106
112
public static extern void InitializeWebAssemblyTarget ( ) ;
107
113
@@ -153,6 +159,9 @@ public static unsafe partial class LLVM
153
159
[ DllImport ( "libLLVM" , CallingConvention = CallingConvention . Cdecl , EntryPoint = "LLVMInitializeSystemZTargetMC" , ExactSpelling = true ) ]
154
160
public static extern void InitializeSystemZTargetMC ( ) ;
155
161
162
+ [ DllImport ( "libLLVM" , CallingConvention = CallingConvention . Cdecl , EntryPoint = "LLVMInitializeVETargetMC" , ExactSpelling = true ) ]
163
+ public static extern void InitializeVETargetMC ( ) ;
164
+
156
165
[ DllImport ( "libLLVM" , CallingConvention = CallingConvention . Cdecl , EntryPoint = "LLVMInitializeWebAssemblyTargetMC" , ExactSpelling = true ) ]
157
166
public static extern void InitializeWebAssemblyTargetMC ( ) ;
158
167
@@ -204,6 +213,9 @@ public static unsafe partial class LLVM
204
213
[ DllImport ( "libLLVM" , CallingConvention = CallingConvention . Cdecl , EntryPoint = "LLVMInitializeSystemZAsmPrinter" , ExactSpelling = true ) ]
205
214
public static extern void InitializeSystemZAsmPrinter ( ) ;
206
215
216
+ [ DllImport ( "libLLVM" , CallingConvention = CallingConvention . Cdecl , EntryPoint = "LLVMInitializeVEAsmPrinter" , ExactSpelling = true ) ]
217
+ public static extern void InitializeVEAsmPrinter ( ) ;
218
+
207
219
[ DllImport ( "libLLVM" , CallingConvention = CallingConvention . Cdecl , EntryPoint = "LLVMInitializeWebAssemblyAsmPrinter" , ExactSpelling = true ) ]
208
220
public static extern void InitializeWebAssemblyAsmPrinter ( ) ;
209
221
@@ -252,6 +264,9 @@ public static unsafe partial class LLVM
252
264
[ DllImport ( "libLLVM" , CallingConvention = CallingConvention . Cdecl , EntryPoint = "LLVMInitializeSystemZAsmParser" , ExactSpelling = true ) ]
253
265
public static extern void InitializeSystemZAsmParser ( ) ;
254
266
267
+ [ DllImport ( "libLLVM" , CallingConvention = CallingConvention . Cdecl , EntryPoint = "LLVMInitializeVEAsmParser" , ExactSpelling = true ) ]
268
+ public static extern void InitializeVEAsmParser ( ) ;
269
+
255
270
[ DllImport ( "libLLVM" , CallingConvention = CallingConvention . Cdecl , EntryPoint = "LLVMInitializeWebAssemblyAsmParser" , ExactSpelling = true ) ]
256
271
public static extern void InitializeWebAssemblyAsmParser ( ) ;
257
272
@@ -297,6 +312,9 @@ public static unsafe partial class LLVM
297
312
[ DllImport ( "libLLVM" , CallingConvention = CallingConvention . Cdecl , EntryPoint = "LLVMInitializeSystemZDisassembler" , ExactSpelling = true ) ]
298
313
public static extern void InitializeSystemZDisassembler ( ) ;
299
314
315
+ [ DllImport ( "libLLVM" , CallingConvention = CallingConvention . Cdecl , EntryPoint = "LLVMInitializeVEDisassembler" , ExactSpelling = true ) ]
316
+ public static extern void InitializeVEDisassembler ( ) ;
317
+
300
318
[ DllImport ( "libLLVM" , CallingConvention = CallingConvention . Cdecl , EntryPoint = "LLVMInitializeWebAssemblyDisassembler" , ExactSpelling = true ) ]
301
319
public static extern void InitializeWebAssemblyDisassembler ( ) ;
302
320
0 commit comments