diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2017-04-18 00:05:09 -0400 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2017-04-18 00:05:09 -0400 |
| commit | 407916cd2f3f4931de29fd87b8c9ae3faeba8452 (patch) | |
| tree | 5ee194f80ce127d81e220869cd56bb53c1c04f17 /src/ir_print.cpp | |
| parent | def4fbc9ab704b1add5c3af40692b3d26594e58e (diff) | |
| download | zig-407916cd2f3f4931de29fd87b8c9ae3faeba8452.tar.gz zig-407916cd2f3f4931de29fd87b8c9ae3faeba8452.zip | |
rename `@intType` to `@IntType` to follow convention
closes #327
Diffstat (limited to 'src/ir_print.cpp')
| -rw-r--r-- | src/ir_print.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ir_print.cpp b/src/ir_print.cpp index e16e795c4d..7670dfa09e 100644 --- a/src/ir_print.cpp +++ b/src/ir_print.cpp @@ -602,7 +602,7 @@ static void ir_print_truncate(IrPrint *irp, IrInstructionTruncate *instruction) } static void ir_print_int_type(IrPrint *irp, IrInstructionIntType *instruction) { - fprintf(irp->f, "@intType("); + fprintf(irp->f, "@IntType("); ir_print_other_instruction(irp, instruction->is_signed); fprintf(irp->f, ", "); ir_print_other_instruction(irp, instruction->bit_count); |
