mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-13 21:05:16 +00:00
Minor warning fixes (semicolons, newline at EOF).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96343 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ccba15f914
commit
30fb00aac0
@ -94,4 +94,4 @@ MCSection *X86ELFMCAsmInfo::getNonexecutableStackSection(MCContext &Ctx) const {
|
||||
X86MCAsmInfoCOFF::X86MCAsmInfoCOFF(const Triple &Triple) {
|
||||
AsmTransCBE = x86_asm_table;
|
||||
AssemblerDialect = AsmWriterFlavor;
|
||||
}
|
||||
}
|
||||
|
@ -49,7 +49,7 @@ namespace llvm {
|
||||
const X86TargetMachine &TM;
|
||||
public:
|
||||
X8632_ELFTargetObjectFile(const X86TargetMachine &tm)
|
||||
:TM(tm) { };
|
||||
:TM(tm) { }
|
||||
virtual unsigned getPersonalityEncoding() const;
|
||||
virtual unsigned getLSDAEncoding() const;
|
||||
virtual unsigned getFDEEncoding() const;
|
||||
@ -60,7 +60,7 @@ namespace llvm {
|
||||
const X86TargetMachine &TM;
|
||||
public:
|
||||
X8664_ELFTargetObjectFile(const X86TargetMachine &tm)
|
||||
:TM(tm) { };
|
||||
:TM(tm) { }
|
||||
virtual unsigned getPersonalityEncoding() const;
|
||||
virtual unsigned getLSDAEncoding() const;
|
||||
virtual unsigned getFDEEncoding() const;
|
||||
|
Loading…
Reference in New Issue
Block a user