summaryrefslogtreecommitdiff
path: root/generate
diff options
context:
space:
mode:
authorRobert Moore <Robert.Moore@intel.com>2017-09-01 10:38:59 -0700
committerRobert Moore <Robert.Moore@intel.com>2017-09-01 10:38:59 -0700
commit0d3a7f1d9629fc1682dbbc895f71594fc295ec09 (patch)
tree2c8d4ecfba000a034c7ecf7ecf0272c4d9a42e34 /generate
parent8232c299742d82ef2e450d84a5e28a9720feca30 (diff)
downloadacpica-0d3a7f1d9629fc1682dbbc895f71594fc295ec09.tar.gz
iASL: Move all allocation functions to new modules
Memory allocation functions are in aslallocate.c Cache functions are in aslcache.c
Diffstat (limited to 'generate')
-rwxr-xr-xgenerate/msvc9/AslCompiler.vcproj8
-rw-r--r--generate/unix/iasl/Makefile2
2 files changed, 10 insertions, 0 deletions
diff --git a/generate/msvc9/AslCompiler.vcproj b/generate/msvc9/AslCompiler.vcproj
index 26c7f164b..564763d9f 100755
--- a/generate/msvc9/AslCompiler.vcproj
+++ b/generate/msvc9/AslCompiler.vcproj
@@ -820,6 +820,10 @@
Name="Compiler Source"
>
<File
+ RelativePath="..\..\source\compiler\aslallocate.c"
+ >
+ </File>
+ <File
RelativePath="..\..\source\compiler\aslanalyze.c"
>
</File>
@@ -832,6 +836,10 @@
>
</File>
<File
+ RelativePath="..\..\source\compiler\aslcache.c"
+ >
+ </File>
+ <File
RelativePath="..\..\source\compiler\aslcodegen.c"
>
</File>
diff --git a/generate/unix/iasl/Makefile b/generate/unix/iasl/Makefile
index 02390ea1c..27f5d8d27 100644
--- a/generate/unix/iasl/Makefile
+++ b/generate/unix/iasl/Makefile
@@ -51,9 +51,11 @@ OBJECTS = \
$(OBJDIR)/ahpredef.o\
$(OBJDIR)/ahtable.o\
$(OBJDIR)/ahuuids.o\
+ $(OBJDIR)/aslallocate.o\
$(OBJDIR)/aslanalyze.o\
$(OBJDIR)/aslascii.o\
$(OBJDIR)/aslbtypes.o\
+ $(OBJDIR)/aslcache.o\
$(OBJDIR)/aslcodegen.o\
$(OBJDIR)/aslcompile.o\
$(OBJDIR)/asldebug.o\