File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -145,19 +145,19 @@ auto getInt8PtrTy(LLVMContext &ctxt) {
145
145
return PointerType::getUnqual(ctxt);
146
146
}
147
147
auto getInt16PtrTy(LLVMContext &ctxt) {
148
- return Type::getInt16PtrTy (ctxt);
148
+ return PointerType::getUnqual (ctxt);
149
149
}
150
150
auto getInt32PtrTy(LLVMContext &ctxt) {
151
- return Type::getInt32PtrTy (ctxt);
151
+ return PointerType::getUnqual (ctxt);
152
152
}
153
153
auto getInt64PtrTy(LLVMContext &ctxt) {
154
- return Type::getInt64PtrTy (ctxt);
154
+ return PointerType::getUnqual (ctxt);
155
155
}
156
156
auto getFloatPtrTy(LLVMContext &ctxt) {
157
- return Type::getFloatPtrTy (ctxt);
157
+ return PointerType::getUnqual (ctxt);
158
158
}
159
159
auto getDoublePtrTy(LLVMContext &ctxt) {
160
- return Type::getDoublePtrTy (ctxt);
160
+ return PointerType::getUnqual (ctxt);
161
161
}
162
162
163
163
typedef Instruction TerminatorInst;
You can’t perform that action at this time.
0 commit comments