Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion copilot-c99/src/Copilot/Compile/C99/CodeGen.hs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ genfun name expr ty = C.FunDef cty name [] cvars [C.Return $ Just cexpr] where
mkextdecln :: External -> C.Decln
mkextdecln (External name _ ty) = decln where
decln = C.VarDecln (Just C.Extern) cty name Nothing
cty = transtype ty
cty = C.Volatile (transtype ty)

-- | Make a declaration for a copy of an external variable.
mkextcpydecln :: External -> C.Decln
Expand Down