diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-07-16 01:55:13 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-07-16 01:55:13 +0000 |
commit | bf79dcb6c45fdf395584ce127852e75cf44def3b (patch) | |
tree | d1e7a0e76e742fc614c088f868e8b595ff04f9db /lib/Target/ARM/ARMTargetMachine.cpp | |
parent | ecbc438ac0dc7ca54ce1509e6d19bbfd577aaef6 (diff) | |
download | external_llvm-bf79dcb6c45fdf395584ce127852e75cf44def3b.zip external_llvm-bf79dcb6c45fdf395584ce127852e75cf44def3b.tar.gz external_llvm-bf79dcb6c45fdf395584ce127852e75cf44def3b.tar.bz2 |
Kill off <TARGET>MachineModule variables, and <TARGETASMPRINTER>ForceLink
variables.
- Module initialization functions supplanted the need for these.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75886 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMTargetMachine.cpp')
-rw-r--r-- | lib/Target/ARM/ARMTargetMachine.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/Target/ARM/ARMTargetMachine.cpp b/lib/Target/ARM/ARMTargetMachine.cpp index 5191244..a207871 100644 --- a/lib/Target/ARM/ARMTargetMachine.cpp +++ b/lib/Target/ARM/ARMTargetMachine.cpp @@ -28,13 +28,6 @@ static cl::opt<bool> DisableLdStOpti("disable-arm-loadstore-opti", cl::Hidden, static cl::opt<bool> DisableIfConversion("disable-arm-if-conversion",cl::Hidden, cl::desc("Disable if-conversion pass")); -/// ARMTargetMachineModule - Note that this is used on hosts that cannot link -/// in a library unless there are references into the library. In particular, -/// it seems that it is not possible to get things to work on Win32 without -/// this. Though it is unused, do not remove it. -extern "C" int ARMTargetMachineModule; -int ARMTargetMachineModule = 0; - // Register the target. extern Target TheARMTarget; static RegisterTarget<ARMTargetMachine> X(TheARMTarget, "arm", "ARM"); |