| 923 | } |
| 924 | |
| 925 | static bool getDecodedDSOLocal(unsigned Val) { |
| 926 | switch(Val) { |
| 927 | default: // Map unknown values to preemptable. |
| 928 | case 0: return false; |
| 929 | case 1: return true; |
| 930 | } |
| 931 | } |
| 932 | |
| 933 | static GlobalVariable::ThreadLocalMode getDecodedThreadLocalMode(unsigned Val) { |
| 934 | switch (Val) { |
no outgoing calls
no test coverage detected