mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-20 16:17:38 +00:00
Revert r201237+r201238: Demote EmitRawText call in AsmPrinter::EmitInlineAsm() and remove hasRawTextSupport() call
It introduced multiple test failures in the buildbots. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201241 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -53,10 +53,6 @@ static cl::opt<cl::boolOrDefault>
|
||||
AsmVerbose("asm-verbose", cl::desc("Add comments to directives."),
|
||||
cl::init(cl::BOU_UNSET));
|
||||
|
||||
static cl::opt<bool>
|
||||
NoIntegratedAssembler("no-integrated-as", cl::Hidden,
|
||||
cl::desc("Disable integrated assembler"));
|
||||
|
||||
static bool getVerboseAsm() {
|
||||
switch (AsmVerbose) {
|
||||
case cl::BOU_UNSET: return TargetMachine::getAsmVerbosityDefault();
|
||||
@@ -67,20 +63,14 @@ static bool getVerboseAsm() {
|
||||
}
|
||||
|
||||
void LLVMTargetMachine::initAsmInfo() {
|
||||
MCAsmInfo *TmpAsmInfo = TheTarget.createMCAsmInfo(*getRegisterInfo(),
|
||||
TargetTriple);
|
||||
AsmInfo = TheTarget.createMCAsmInfo(*getRegisterInfo(), TargetTriple);
|
||||
// TargetSelect.h moved to a different directory between LLVM 2.9 and 3.0,
|
||||
// and if the old one gets included then MCAsmInfo will be NULL and
|
||||
// we'll crash later.
|
||||
// Provide the user with a useful error message about what's wrong.
|
||||
assert(TmpAsmInfo && "MCAsmInfo not initialized. "
|
||||
assert(AsmInfo && "MCAsmInfo not initialized. "
|
||||
"Make sure you include the correct TargetSelect.h"
|
||||
"and that InitializeAllTargetMCs() is being invoked!");
|
||||
|
||||
if (NoIntegratedAssembler)
|
||||
TmpAsmInfo->setUseIntegratedAssembler(false);
|
||||
|
||||
AsmInfo = TmpAsmInfo;
|
||||
}
|
||||
|
||||
LLVMTargetMachine::LLVMTargetMachine(const Target &T, StringRef Triple,
|
||||
|
||||
Reference in New Issue
Block a user