Skip to content

Commit

Permalink
fix(llvm) build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Spasi committed Jun 6, 2024
1 parent bc64d33 commit 9095f66
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1487,7 +1487,7 @@ public static SharedLibrary getLibrary() {
CXCursor_OMPParallelMaskedTaskLoopSimdDirective = 304,
CXCursor_OMPErrorDirective = 305,
CXCursor_OMPScopeDirective = 306,
CXCursor_LastStmt = CXCursor_OMPErrDirective,
CXCursor_LastStmt = CXCursor_OMPScopeDirective,
CXCursor_TranslationUnit = 350,
CXCursor_FirstAttr = 400,
CXCursor_UnexposedAttr = 400,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12736,7 +12736,7 @@ public static void LLVMSetFastMathFlags(@NativeType("LLVMValueRef") long FPMathI
* Check if a given value can potentially have fast math flags.
*
* <p>Will return true for floating point arithmetic instructions, and for select, phi, and call instructions whose type is a floating point type, or a
* vector or array thereof. See <a href="https://llvm.org/docs/{@link LangRef.html#fast}-math-flags">fast-math-flags</a>.</p>
* vector or array thereof. See <a href="https://llvm.org/docs/LangRef.html#fast-math-flags">fast-math-flags</a>.</p>
*
* @since 18
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,7 @@ val ClangIndex = "ClangIndex".nativeClass(
"Cursor_OMPParallelMaskedTaskLoopSimdDirective".enum("OpenMP parallel masked taskloop simd directive."),
"Cursor_OMPErrorDirective".enum("OpenMP error directive."),
"Cursor_OMPScopeDirective".enum("OpenMP scope directive."),
"Cursor_LastStmt".enum("", "CXCursor_OMPErrDirective"),
"Cursor_LastStmt".enum("", "CXCursor_OMPScopeDirective"),
"Cursor_TranslationUnit".enum(
"""
Cursor that represents the translation unit itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5583,7 +5583,7 @@ val LLVMCore = "LLVMCore".nativeClass(
Check if a given value can potentially have fast math flags.
Will return true for floating point arithmetic instructions, and for select, phi, and call instructions whose type is a floating point type, or a
vector or array thereof. See ${url("https://llvm.org/docs/LangRef.html#fast-math-flags", "fast-math-flags")}.
vector or array thereof. See ${url("https://llvm.org/docs/LangRef.html\\#fast-math-flags", "fast-math-flags")}.
""",

LLVMValueRef("Inst", ""),
Expand Down

0 comments on commit 9095f66

Please sign in to comment.