| 791 | const int FunctionControlCeiling = 4; |
| 792 | |
| 793 | const char* FunctionControlString(int cont) |
| 794 | { |
| 795 | switch (cont) { |
| 796 | case 0: return "Inline"; |
| 797 | case 1: return "DontInline"; |
| 798 | case 2: return "Pure"; |
| 799 | case 3: return "Const"; |
| 800 | |
| 801 | case FunctionControlCeiling: |
| 802 | default: return "Bad"; |
| 803 | } |
| 804 | } |
| 805 | |
| 806 | const char* MemorySemanticsString(int mem) |
| 807 | { |
nothing calls this directly
no outgoing calls
no test coverage detected