File tree Expand file tree Collapse file tree 1 file changed +0
-22
lines changed Expand file tree Collapse file tree 1 file changed +0
-22
lines changed Original file line number Diff line number Diff line change @@ -60,14 +60,6 @@ def cFuncSuffix(bits):
60
60
if bits == 80 :
61
61
return 'l'
62
62
63
- def llvmIntrinsicSuffix( bits) :
64
- if bits == 32 :
65
- return 'f32 '
66
- if bits == 64 :
67
- return 'f64 '
68
- if bits == 80 :
69
- return 'f80 '
70
-
71
63
def getInfBitPattern( bits) :
72
64
if bits == 32 :
73
65
return '0x7f800000 '
@@ -82,27 +74,13 @@ def getQuietNaNBitPattern(bits):
82
74
return '0x7ff8000000000000 '
83
75
return 'error'
84
76
85
- def getSignalingNanBitPattern( bits) :
86
- if bits == 32 :
87
- return '0x7fa00000 '
88
- if bits == 64 :
89
- return '0x7ff4000000000000 '
90
- return 'error'
91
-
92
77
def getMinNormalBitPattern( bits) :
93
78
if bits == 32 :
94
79
return '0x00800000 '
95
80
if bits == 64 :
96
81
return '0x0010000000000000 '
97
82
return 'error'
98
83
99
- def getExponentBitCount( bits) :
100
- if bits == 32 :
101
- return '8 '
102
- if bits == 64 :
103
- return '11 '
104
- return 'error'
105
-
106
84
def getSignificantBitCount( bits) :
107
85
if bits == 32 :
108
86
return '23 '
You can’t perform that action at this time.
0 commit comments