-
Notifications
You must be signed in to change notification settings - Fork 744
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Include new
llvm-c/Transforms/PassBuilder.h
header file in prese…
…ts for LLVM (pull #1093)
- Loading branch information
Showing
4 changed files
with
130 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
llvm/src/gen/java/org/bytedeco/llvm/LLVM/LLVMPassBuilderOptionsRef.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// Targeted by JavaCPP version 1.5.7-SNAPSHOT: DO NOT EDIT THIS FILE | ||
|
||
package org.bytedeco.llvm.LLVM; | ||
|
||
import java.nio.*; | ||
import org.bytedeco.javacpp.*; | ||
import org.bytedeco.javacpp.annotation.*; | ||
|
||
import static org.bytedeco.javacpp.presets.javacpp.*; | ||
|
||
import static org.bytedeco.llvm.global.LLVM.*; | ||
|
||
|
||
/** | ||
* A set of options passed which are attached to the Pass Manager upon run. | ||
* | ||
* This corresponds to an llvm::LLVMPassBuilderOptions instance | ||
* | ||
* The details for how the different properties of this structure are used can | ||
* be found in the source for LLVMRunPasses | ||
*/ | ||
@Name("LLVMOpaquePassBuilderOptions") @Opaque @Properties(inherit = org.bytedeco.llvm.presets.LLVM.class) | ||
public class LLVMPassBuilderOptionsRef extends Pointer { | ||
/** Empty constructor. Calls {@code super((Pointer)null)}. */ | ||
public LLVMPassBuilderOptionsRef() { super((Pointer)null); } | ||
/** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */ | ||
public LLVMPassBuilderOptionsRef(Pointer p) { super(p); } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters