xref: /llvm-project/compiler-rt/test/orc/TestCases/Linux/ppc64/Inputs/trivial-tls-pwr10.cpp (revision 18dc8dcd768fd99f29d21d3fa1603d299c686da1)
1 extern thread_local int x;
2 extern thread_local int y;
3 extern thread_local int z;
4 
TestPOWER10()5 int __attribute__((target("arch=pwr10"))) TestPOWER10() { return x + y + z; }
6