/* Test that optimized out __thread var doesn't have its location referenced in debug info. *//* { dg-do link } *//* { dg-options "-O2" } *//* { dg-require-effective-target tls } */static__threadintvara;intfoo(intb){returnvara+b;}intmain(void){returnfoo(0);}