brintos

brintos / llvm-project-archived public Read only

0
0
Text · 160 B · a6fb308 Raw
6 lines · cpp
1extern thread_local int x;2extern thread_local int y;3extern thread_local int z;4 5int __attribute__((target("arch=pwr10"))) TestPOWER10() { return x + y + z; }6