Update CMake build, unbreak linux build.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79779 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Benjamin Kramer 2009-08-22 22:07:08 +00:00
parent 5ec2e6b586
commit ecf046b86d
3 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,7 @@
add_llvm_library(LLVMMC add_llvm_library(LLVMMC
MCAsmInfo.cpp
MCAsmInfoCOFF.cpp
MCAsmInfoDarwin.cpp
MCAsmLexer.cpp MCAsmLexer.cpp
MCAsmParser.cpp MCAsmParser.cpp
MCAsmStreamer.cpp MCAsmStreamer.cpp

View File

@ -1,9 +1,6 @@
add_llvm_library(LLVMTarget add_llvm_library(LLVMTarget
COFFTargetAsmInfo.cpp
DarwinTargetAsmInfo.cpp
SubtargetFeature.cpp SubtargetFeature.cpp
Target.cpp Target.cpp
TargetAsmInfo.cpp
TargetData.cpp TargetData.cpp
TargetELFWriterInfo.cpp TargetELFWriterInfo.cpp
TargetFrameInfo.cpp TargetFrameInfo.cpp

View File

@ -19,7 +19,7 @@ MipsMCAsmInfo::MipsMCAsmInfo(const Target &T, const StringRef &TT) {
COMMDirectiveTakesAlignment = true; COMMDirectiveTakesAlignment = true;
Data16bitsDirective = "\t.half\t"; Data16bitsDirective = "\t.half\t";
Data32bitsDirective = "\t.word\t"; Data32bitsDirective = "\t.word\t";
Data64bitsDirective = NULL; Data64bitsDirective = 0;
PrivateGlobalPrefix = "$"; PrivateGlobalPrefix = "$";
CommentString = "#"; CommentString = "#";
ZeroDirective = "\t.space\t"; ZeroDirective = "\t.space\t";