aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/ARM/ARM.h
diff options
context:
space:
mode:
authorJason W Kim <jason.w.kim.2009@gmail.com>2010-09-30 02:17:26 +0000
committerJason W Kim <jason.w.kim.2009@gmail.com>2010-09-30 02:17:26 +0000
commitd4d4f4f488d46a9743a0c494b42b22a1b15e0e7d (patch)
treebabfdaf1a18ef75d89bc4fe0b066d1f521fcd2c0 /lib/Target/ARM/ARM.h
parenta4e97de71d7dd890eb9f705710bd094f0fa7ac49 (diff)
I added a new file ARMAsmBackend which stubs out in similar ways to
the eqv X86 class. For now, I split the ELFARMAsmBackend from the DarwinARMAsmBackend (also mimicking X86) Tested against -r115126 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115129 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARM.h')
-rw-r--r--lib/Target/ARM/ARM.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Target/ARM/ARM.h b/lib/Target/ARM/ARM.h
index 73fe004087..8c98bc984a 100644
--- a/lib/Target/ARM/ARM.h
+++ b/lib/Target/ARM/ARM.h
@@ -27,11 +27,14 @@ class FunctionPass;
class JITCodeEmitter;
class formatted_raw_ostream;
class MCCodeEmitter;
+class TargetAsmBackend;
MCCodeEmitter *createARMMCCodeEmitter(const Target &,
TargetMachine &TM,
MCContext &Ctx);
+TargetAsmBackend *createARMAsmBackend(const Target &, const std::string &);
+
FunctionPass *createARMISelDag(ARMBaseTargetMachine &TM,
CodeGenOpt::Level OptLevel);