We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fc0a132 + ecb3ee5 commit 310323fCopy full SHA for 310323f
1 file changed
compiler/passes/insertLineNumbers.cpp
@@ -151,7 +151,7 @@ Pass::LineAndFile Pass::makeASTLine(CallExpr* call) {
151
// TODO: can this just use CHPL_FILE_IDX_COMMAND_LINE_ARG?
152
// Make up pretend line numbers for errors with command line
153
// configuration variables.
154
- Symbol* line = new_IntSymbol(0);
+ Symbol* line = new_IntSymbol(0, INT_SIZE_32);
155
156
FnSymbol* fn = call->resolvedFunction();
157
@@ -175,7 +175,7 @@ Pass::LineAndFile Pass::makeASTLine(CallExpr* call) {
175
176
} else {
177
// Apply the line number from the call AST node
178
- Symbol* line = new_IntSymbol(call->linenum());
+ Symbol* line = new_IntSymbol(call->linenum(), INT_SIZE_32);
179
180
int filenameIdx = addFilenameTableEntry(call->fname());
181
0 commit comments