@@ -26,8 +26,7 @@ class ConstantProxyHash;
2626class ConstantProxy {
2727 friend class ConstantProxyHash ;
2828
29- std::variant<pConstI1, pConstI8, pConstI32, pConstI64, pConstI128,
30- pConstF32, pConstI32Vec, pConstF32Vec> value;
29+ std::variant<pConstI1, pConstI8, pConstI32, pConstI64, pConstF32, pConstI32Vec, pConstF32Vec> value;
3130
3231 ConstantPool *pool;
3332
@@ -42,7 +41,6 @@ class ConstantProxy {
4241 explicit ConstantProxy (ConstantPool *pool_, pConstI8 value_);
4342 explicit ConstantProxy (ConstantPool *pool_, pConstI32 value_);
4443 explicit ConstantProxy (ConstantPool *pool_, pConstI64 value_);
45- explicit ConstantProxy (ConstantPool *pool_, pConstI128 value_);
4644 explicit ConstantProxy (ConstantPool *pool_, pConstF32 value_);
4745 explicit ConstantProxy (ConstantPool *pool_, pConstI32Vec value_);
4846 explicit ConstantProxy (ConstantPool *pool_, pConstF32Vec value_);
@@ -53,7 +51,6 @@ class ConstantProxy {
5351 explicit ConstantProxy (ConstantPool *pool_, char value_);
5452 explicit ConstantProxy (ConstantPool *pool_, int value_);
5553 explicit ConstantProxy (ConstantPool *pool_, int64_t value_);
56- explicit ConstantProxy (ConstantPool *pool_, int128_t value_);
5754 explicit ConstantProxy (ConstantPool *pool_, float value_);
5855 explicit ConstantProxy (ConstantPool *pool_, const std::vector<int >& value_);
5956 explicit ConstantProxy (ConstantPool *pool_, const std::vector<float >& value_);
@@ -88,14 +85,12 @@ class ConstantProxy {
8885 bool operator ==(char rhs) const ;
8986 bool operator ==(int rhs) const ;
9087 bool operator ==(int64_t rhs) const ;
91- bool operator ==(int128_t rhs) const ;
9288 bool operator ==(float rhs) const ;
9389
9490 pConstI1 getConstantI1 () const ;
9591 pConstI8 getConstantI8 () const ;
9692 pConstI32 getConstantInt () const ;
9793 pConstI64 getConstantI64 () const ;
98- pConstI128 getConstantI128 () const ;
9994 pConstF32 getConstantFloat () const ;
10095 pConstI32Vec getConstantIntVector () const ;
10196 pConstF32Vec getConstantFloatVector () const ;
@@ -106,7 +101,6 @@ class ConstantProxy {
106101 char get_i8 () const ;
107102 int get_int () const ;
108103 int64_t get_i64 () const ;
109- int128_t get_i128 () const ;
110104 float get_float () const ;
111105 std::vector<int > get_i32_vector () const ;
112106 std::vector<float > get_f32_vector () const ;
0 commit comments