Language
C++
Compiler
gcc 11.1.0
Options
Optimization
Boost 1.76.0
C++2b(GNU)
no pedantic
$ g++ prog.cc -O2 -march=native -I/opt/wandbox/boost-1.76.0/gcc-11.1.0/include -std=gnu++2b
================================
Test1:
#0 "JUMP_TO(etiqueta)"
-> JUMP_TO("etiqueta", "")
#1 " LOG(this is to be writen in the log)"
-> LOG("this is to be writen in the log", "")
#2 " SEND(id_8, AF9E02CA7EFF)"
-> SEND("id_8", "AF9E02CA7EFF")
#3 " LOG(write me in a log 1)"
-> LOG("write me in a log 1", "")
#4 " LOG(write me in a log 2"
#5 " END(5.75)"
#6 " LABEL1:"
#7 ""
#8 " #On the fly comment"
#9 " WAIT_TIME(25)"
#10 " SEND(id_3, AF9E02CA7EFF)"
================================
Test1:
#0 "JUMP_TO(etiqueta)"
-> JUMP_TO("etiqueta", "")
#1 " LOG(this is to write in the log)"
-> LOG("this is to write in the log", "")
#2 " SEND(id_8, AF9E02CA7EFF)"
-> SEND("id_8", "AF9E02CA7EFF")
#3 " LOG(write me in a log 1)"
-> LOG("write me in a log 1", "")
#4 " LOG(write me in a log 2)"
-> LOG("write me in a log 2", "")
#5 " END(5.75)"
-> END("5.75", "")
#6 " xxxxx non sense xxxxxx"
#7 " LABEL1:"
#8 ""
#9 " #On the fly comment"
#10 " WAIT_TIME(25)"
#11 " SEND(id_3, AF9E02CA7EFF)"
================================
Test1:
#0 "JUMP_TO(etiqueta)"
-> JUMP_TO("etiqueta", "")
#1 " LOG(this is to write in the log)"
-> LOG("this is to write in the log", "")
#2 " SEND(id_8, AF9E02CA7EFF)"
-> SEND("id_8", "AF9E02CA7EFF")
#3 " LOG(write me in a log 1)"
-> LOG("write me in a log 1", "")
#4 " LOG(write me in a log 2)"
-> LOG("write me in a log 2", "")
#5 " END(5.75)"
-> END("5.75", "")
#6 " "
-> NONE("", "")
#7 " LABEL1:"
-> LABEL("LABEL1", "")
#8 ""
-> NONE("", "")
#9 " #On the fly comment"
-> COMMENT("On the fly comment", "")
#10 " WAIT_TIME(25)"
-> WAIT_TIME("25", "")
#11 " SEND(id_8, AF9E02CA7EFF)"
-> SEND("id_8", "AF9E02CA7EFF")
Exit Code:
0