// Compile with: clang -gmlt -fdebug-info-for-profiling -O2 discrim.c -o discrim// to get an input file with DWARF line table discriminators in it.// Tested in test/tools/llvm-symbolizer/sym-verbose.teststaticvolatileint do_mul;staticvolatileint x, v;intfoo() {if(do_mul) x *= v;else x /= v;return x;}intmain() {returnfoo() +foo();}