diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2019-07-12 18:12:27 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-12 18:12:27 -0400 |
| commit | 107e57484f603773d0f6b404873bdae92626749b (patch) | |
| tree | a6dd4c7fb6c0f4875e8dbf3fc60d20d0a19b1aef /src/ir.cpp | |
| parent | 4e58855a4a45981337722be3ffe321bb84825992 (diff) | |
| parent | 39b850c6cfd12e48bcbac8ef31f467ac7b3275b8 (diff) | |
| download | zig-107e57484f603773d0f6b404873bdae92626749b.tar.gz zig-107e57484f603773d0f6b404873bdae92626749b.zip | |
Merge pull request #2868 from ziglang/windows-libc
provide a libc for windows using mingw-w64
Diffstat (limited to 'src/ir.cpp')
| -rw-r--r-- | src/ir.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ir.cpp b/src/ir.cpp index 94307627a1..616bb23132 100644 --- a/src/ir.cpp +++ b/src/ir.cpp @@ -15027,9 +15027,10 @@ static IrInstruction *ir_analyze_instruction_export(IrAnalyze *ira, IrInstructio break; } } break; + case ZigTypeIdInt: + break; case ZigTypeIdVoid: case ZigTypeIdBool: - case ZigTypeIdInt: case ZigTypeIdFloat: case ZigTypeIdPointer: case ZigTypeIdComptimeFloat: |
