mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
a66f48d8e9
ExpandIntegerOperand (LegalizeIntegerTypes.cpp) is needed which is yet to be reworked and submitted. llvm-svn: 59617
42 lines
1.1 KiB
C++
42 lines
1.1 KiB
C++
//=====-- PIC16TargetAsmInfo.h - PIC16 asm properties ---------*- C++ -*--====//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file contains the declaration of the PIC16TargetAsmInfo class.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef PIC16TARGETASMINFO_H
|
|
#define PIC16TARGETASMINFO_H
|
|
|
|
#include "llvm/Target/TargetAsmInfo.h"
|
|
|
|
namespace llvm {
|
|
|
|
// Forward declaration.
|
|
class PIC16TargetMachine;
|
|
|
|
struct PIC16TargetAsmInfo : public TargetAsmInfo {
|
|
PIC16TargetAsmInfo(const PIC16TargetMachine &TM);
|
|
const char *UDataSectionStartSuffix;
|
|
const char *RomDataSectionStartSuffix;
|
|
public :
|
|
const char *getUDataSectionStartSuffix() const {
|
|
return UDataSectionStartSuffix;
|
|
}
|
|
const char *getRomDataSectionStartSuffix() const {
|
|
return RomDataSectionStartSuffix;
|
|
}
|
|
|
|
|
|
};
|
|
|
|
} // namespace llvm
|
|
|
|
#endif
|