File tree 6 files changed +22
-7
lines changed
6 files changed +22
-7
lines changed Original file line number Diff line number Diff line change 9
9
- " main"
10
10
11
11
env :
12
- LLVM_VERSION : 13
12
+ LLVM_VERSION : 14
13
13
14
14
jobs :
15
15
test :
18
18
19
19
steps :
20
20
- name : Checkout
21
- uses : actions/checkout@v2
21
+ uses : actions/checkout@v3
22
22
23
23
- name : Test in Docker
24
24
run : |
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ export CC := clang
4
4
export CXX := clang++
5
5
6
6
LLVM_LIBDIR? =$(shell llvm-config --libdir)
7
- LLVM_VERSION? =9
7
+ LLVM_VERSION? =14
8
8
9
9
GO_TEST_FUNC? =.
10
10
Original file line number Diff line number Diff line change @@ -2594,7 +2594,15 @@ enum CXCursorKind {
2594
2594
*/
2595
2595
CXCursor_OMPUnrollDirective = 293 ,
2596
2596
2597
- CXCursor_LastStmt = CXCursor_OMPUnrollDirective ,
2597
+ /** OpenMP metadirective directive.
2598
+ */
2599
+ CXCursor_OMPMetaDirective = 294 ,
2600
+
2601
+ /** OpenMP loop directive.
2602
+ */
2603
+ CXCursor_OMPGenericLoopDirective = 295 ,
2604
+
2605
+ CXCursor_LastStmt = CXCursor_OMPGenericLoopDirective ,
2598
2606
2599
2607
/**
2600
2608
* Cursor that represents the translation unit itself.
@@ -3300,8 +3308,9 @@ enum CXTypeKind {
3300
3308
CXType_UAccum = 37 ,
3301
3309
CXType_ULongAccum = 38 ,
3302
3310
CXType_BFloat16 = 39 ,
3311
+ CXType_Ibm128 = 40 ,
3303
3312
CXType_FirstBuiltin = CXType_Void ,
3304
- CXType_LastBuiltin = CXType_BFloat16 ,
3313
+ CXType_LastBuiltin = CXType_Ibm128 ,
3305
3314
3306
3315
CXType_Complex = 100 ,
3307
3316
CXType_Pointer = 101 ,
Original file line number Diff line number Diff line change @@ -555,7 +555,11 @@ const (
555
555
Cursor_OMPMaskedDirective = C .CXCursor_OMPMaskedDirective
556
556
// Cursor_OMPUnrollDirective openMP unroll directive.
557
557
Cursor_OMPUnrollDirective = C .CXCursor_OMPUnrollDirective
558
- // Cursor_LastStmt openMP unroll directive.
558
+ // Cursor_OMPMetaDirective openMP metadirective directive.
559
+ Cursor_OMPMetaDirective = C .CXCursor_OMPMetaDirective
560
+ // Cursor_OMPGenericLoopDirective openMP loop directive.
561
+ Cursor_OMPGenericLoopDirective = C .CXCursor_OMPGenericLoopDirective
562
+ // Cursor_LastStmt openMP loop directive.
559
563
Cursor_LastStmt = C .CXCursor_LastStmt
560
564
// Cursor_TranslationUnit cursor that represents the translation unit itself.
561
565
//
Original file line number Diff line number Diff line change 1
- // Package clang provides native bindings for the clang C API.
1
+ // Package clang provides the Clang C API bindings for Go .
2
2
package clang
3
3
4
4
import (
Original file line number Diff line number Diff line change @@ -88,6 +88,8 @@ const (
88
88
Type_ULongAccum = C .CXType_ULongAccum
89
89
// Type_BFloat16 a type whose specific kind is not exposed via this interface.
90
90
Type_BFloat16 = C .CXType_BFloat16
91
+ // Type_Ibm128 a type whose specific kind is not exposed via this interface.
92
+ Type_Ibm128 = C .CXType_Ibm128
91
93
// Type_FirstBuiltin a type whose specific kind is not exposed via this interface.
92
94
Type_FirstBuiltin = C .CXType_FirstBuiltin
93
95
// Type_LastBuiltin a type whose specific kind is not exposed via this interface.
You can’t perform that action at this time.
0 commit comments