We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e9e06f commit bca6a6aCopy full SHA for bca6a6a
2 files changed
src/Makefile
@@ -34,7 +34,7 @@ BINDIR = $(PREFIX)/bin
34
PGOBENCH = ./$(EXE) bench 16 1 1 default time
35
36
### Object files
37
-OBJS = bitboard.o
+OBJS = test.o
38
39
### ==========================================================================
40
### Section 2. High-level Configuration
src/test.cpp
@@ -0,0 +1,15 @@
1
+int A[8];
2
+int B[8];
3
+int C;
4
+
5
+int main() {
6
7
+ for (int f = 0; f <= 7; ++f)
8
+ A[f] = f;
9
10
11
+ B[f] = (f > 0 ? A[f - 1] : 0) | (f < 7 ? A[f + 1] : 0);
12
13
+ C = B[7];
14
+}
15
0 commit comments