Skip to content

Commit 43bdcc1

Browse files
committed
Use __VA_OPT__ instead of GNU extensions.
Signed-off-by: fruffy <[email protected]>
1 parent afb0c26 commit 43bdcc1

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

backends/tofino/bf-asm/CMakeLists.txt

-2
Original file line numberDiff line numberDiff line change
@@ -246,8 +246,6 @@ string(REPLACE "-Wno-overloaded-virtual" "" vector_c_flags ${BFASM_CXX_FLAGS})
246246
set_source_files_properties(vector.c PROPERTIES COMPILE_FLAGS ${vector_c_flags})
247247
add_executable (bfas ${BFAS_SOURCES})
248248
# Enable extensions for bfas.
249-
# FIXME: This is needed to implement EXPAND_COMMA in target.h. Replace with __VA_OPT__ in C++20?
250-
target_compile_options(bfas PRIVATE -std=gnu++17)
251249
# Disable errors for warnings. FIXME: Get rid of this.
252250
target_compile_options(bfas PUBLIC "-Wno-error")
253251
target_link_libraries (bfas ${BFASM_LIBS} ${BFASM_LIB_DEPS})

backends/tofino/bf-asm/target.h

+6-4
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,9 @@ struct MemUnit;
7272
#define TARGETS_USING_REGS(CL, ...) TARGETS_USING_REGS_##CL(__VA_ARGS__)
7373
#define REGSETS_IN_CLASS(CL, ...) REGSETS_IN_CLASS_##CL(__VA_ARGS__)
7474

75-
#define EXPAND(...) __VA_ARGS__
76-
#define EXPAND_COMMA(...) , ##__VA_ARGS__
77-
#define EXPAND_COMMA_CLOSE(...) ,##__VA_ARGS__ )
7875
#define INSTANTIATE_TARGET_TEMPLATE(TARGET, FUNC, ...) template FUNC(Target::TARGET::__VA_ARGS__);
7976
#define DECLARE_TARGET_CLASS(TARGET, ...) class TARGET __VA_ARGS__;
8077
#define FRIEND_TARGET_CLASS(TARGET, ...) friend class Target::TARGET __VA_ARGS__;
81-
#define TARGET_OVERLOAD(TARGET, FN, ARGS, ...) FN(Target::TARGET::EXPAND ARGS) __VA_ARGS__;
8278

8379
#define PER_TARGET_CONSTANTS(M) \
8480
M(const char *, name) \
@@ -700,6 +696,12 @@ void emit_parser_registers(const Target::JBay::top_level_regs *regs, std::ostrea
700696
* will all have a Target::type argument prepended. The final ARGS argument is the argument
701697
* list that that will be forwarded (basically ARGDECL without the types)
702698
*/
699+
700+
#define EXPAND(...) __VA_ARGS__
701+
#define EXPAND_COMMA(...) __VA_OPT__(, )##__VA_ARGS__
702+
#define EXPAND_COMMA_CLOSE(...) __VA_OPT__(,)##__VA_ARGS__ __VA_OPT__())
703+
#define TARGET_OVERLOAD(TARGET, FN, ARGS, ...) FN(Target::TARGET::EXPAND ARGS) __VA_ARGS__;
704+
703705
#define DECL_OVERLOAD_FUNC(TARGET, RTYPE, NAME, ARGDECL, ARGS) \
704706
RTYPE NAME(Target::TARGET EXPAND_COMMA_CLOSE ARGDECL;
705707
#define OVERLOAD_FUNC_FOREACH(GROUP, RTYPE, NAME, ARGDECL, ARGS, ...) \

0 commit comments

Comments
 (0)