| 729 | } |
| 730 | |
| 731 | const char* FuncParamAttrString(int attr) |
| 732 | { |
| 733 | switch (attr) { |
| 734 | case 0: return "Zext"; |
| 735 | case 1: return "Sext"; |
| 736 | case 2: return "ByVal"; |
| 737 | case 3: return "Sret"; |
| 738 | case 4: return "NoAlias"; |
| 739 | case 5: return "NoCapture"; |
| 740 | case 6: return "NoWrite"; |
| 741 | case 7: return "NoReadWrite"; |
| 742 | |
| 743 | default: return "Bad"; |
| 744 | } |
| 745 | } |
| 746 | |
| 747 | const char* AccessQualifierString(int attr) |
| 748 | { |
nothing calls this directly
no outgoing calls
no test coverage detected