-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix functions with statics in constants
Also add a test to ensure that new static variable semantics work as intended.
- Loading branch information
1 parent
7bae9fe
commit 35e0287
Showing
13 changed files
with
227 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,51 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-MSVC (NDEBUG)|Win32'"> | ||
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> | ||
<LocalDebuggerWorkingDirectory>$(OutDir)</LocalDebuggerWorkingDirectory> | ||
<LocalDebuggerCommandArguments>-O3 input.dee</LocalDebuggerCommandArguments> | ||
<LocalDebuggerCommand>$(ProjectDir)..\deemon.exe</LocalDebuggerCommand> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-MSVC (NDEBUG)|x64'"> | ||
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> | ||
<LocalDebuggerWorkingDirectory>$(OutDir)</LocalDebuggerWorkingDirectory> | ||
<LocalDebuggerCommandArguments>-O3 input.dee</LocalDebuggerCommandArguments> | ||
<LocalDebuggerCommand>$(ProjectDir)..\deemon.exe</LocalDebuggerCommand> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-MSVC|Win32'"> | ||
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> | ||
<LocalDebuggerWorkingDirectory>$(OutDir)</LocalDebuggerWorkingDirectory> | ||
<LocalDebuggerCommandArguments>-O3 input.dee</LocalDebuggerCommandArguments> | ||
<LocalDebuggerCommand>$(ProjectDir)..\deemon.exe</LocalDebuggerCommand> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-MSVC|x64'"> | ||
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> | ||
<LocalDebuggerWorkingDirectory>$(OutDir)</LocalDebuggerWorkingDirectory> | ||
<LocalDebuggerCommandArguments>-O3 input.dee</LocalDebuggerCommandArguments> | ||
<LocalDebuggerCommand>$(ProjectDir)..\deemon.exe</LocalDebuggerCommand> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release-MSVC (NDEBUG)|Win32'"> | ||
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> | ||
<LocalDebuggerWorkingDirectory>$(OutDir)</LocalDebuggerWorkingDirectory> | ||
<LocalDebuggerCommandArguments>-O3 input.dee</LocalDebuggerCommandArguments> | ||
<LocalDebuggerCommand>$(ProjectDir)..\deemon.exe</LocalDebuggerCommand> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release-MSVC (NDEBUG)|x64'"> | ||
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> | ||
<LocalDebuggerWorkingDirectory>$(OutDir)</LocalDebuggerWorkingDirectory> | ||
<LocalDebuggerCommandArguments>-O3 input.dee</LocalDebuggerCommandArguments> | ||
<LocalDebuggerCommand>$(ProjectDir)..\deemon.exe</LocalDebuggerCommand> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release-MSVC|Win32'"> | ||
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> | ||
<LocalDebuggerWorkingDirectory>$(OutDir)</LocalDebuggerWorkingDirectory> | ||
<LocalDebuggerCommandArguments>-O3 input.dee</LocalDebuggerCommandArguments> | ||
<LocalDebuggerCommand>$(ProjectDir)..\deemon.exe</LocalDebuggerCommand> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release-MSVC|x64'"> | ||
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> | ||
<LocalDebuggerWorkingDirectory>$(OutDir)</LocalDebuggerWorkingDirectory> | ||
<LocalDebuggerCommandArguments>-O3 input.dee</LocalDebuggerCommandArguments> | ||
<LocalDebuggerCommand>$(ProjectDir)..\deemon.exe</LocalDebuggerCommand> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-MSVC (NDEBUG)|Win32'"> | ||
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> | ||
<LocalDebuggerWorkingDirectory>$(OutDir)</LocalDebuggerWorkingDirectory> | ||
<LocalDebuggerCommandArguments>-O3 input.dee</LocalDebuggerCommandArguments> | ||
<LocalDebuggerCommand>$(ProjectDir)..\deemon.exe</LocalDebuggerCommand> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-MSVC (NDEBUG)|x64'"> | ||
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> | ||
<LocalDebuggerWorkingDirectory>$(OutDir)</LocalDebuggerWorkingDirectory> | ||
<LocalDebuggerCommandArguments>-O3 input.dee</LocalDebuggerCommandArguments> | ||
<LocalDebuggerCommand>$(ProjectDir)..\deemon.exe</LocalDebuggerCommand> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-MSVC|Win32'"> | ||
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> | ||
<LocalDebuggerWorkingDirectory>$(OutDir)</LocalDebuggerWorkingDirectory> | ||
<LocalDebuggerCommandArguments>-O3 input.dee</LocalDebuggerCommandArguments> | ||
<LocalDebuggerCommand>$(ProjectDir)..\deemon.exe</LocalDebuggerCommand> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-MSVC|x64'"> | ||
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> | ||
<LocalDebuggerWorkingDirectory>$(OutDir)</LocalDebuggerWorkingDirectory> | ||
<LocalDebuggerCommandArguments>-O3 input.dee</LocalDebuggerCommandArguments> | ||
<LocalDebuggerCommand>$(ProjectDir)..\deemon.exe</LocalDebuggerCommand> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release-MSVC (NDEBUG)|Win32'"> | ||
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> | ||
<LocalDebuggerWorkingDirectory>$(OutDir)</LocalDebuggerWorkingDirectory> | ||
<LocalDebuggerCommandArguments>-O3 input.dee</LocalDebuggerCommandArguments> | ||
<LocalDebuggerCommand>$(ProjectDir)..\deemon.exe</LocalDebuggerCommand> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release-MSVC (NDEBUG)|x64'"> | ||
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> | ||
<LocalDebuggerWorkingDirectory>$(OutDir)</LocalDebuggerWorkingDirectory> | ||
<LocalDebuggerCommandArguments>-O3 input.dee</LocalDebuggerCommandArguments> | ||
<LocalDebuggerCommand>$(ProjectDir)..\deemon.exe</LocalDebuggerCommand> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release-MSVC|Win32'"> | ||
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> | ||
<LocalDebuggerWorkingDirectory>$(OutDir)</LocalDebuggerWorkingDirectory> | ||
<LocalDebuggerCommandArguments>-O3 input.dee</LocalDebuggerCommandArguments> | ||
<LocalDebuggerCommand>$(ProjectDir)..\deemon.exe</LocalDebuggerCommand> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release-MSVC|x64'"> | ||
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> | ||
<LocalDebuggerWorkingDirectory>$(OutDir)</LocalDebuggerWorkingDirectory> | ||
<LocalDebuggerCommandArguments>-O3 input.dee</LocalDebuggerCommandArguments> | ||
<LocalDebuggerCommand>$(ProjectDir)..\deemon.exe</LocalDebuggerCommand> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.