diff options
| author | Dan Gohman <gohman@apple.com> | 2011-10-24 23:48:32 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2011-10-24 23:48:32 +0000 |
| commit | dfc96aea900b281d45779ed3602af3431f5143e9 (patch) | |
| tree | 92c88d6ff9235346c5b7e1fcff57bc81987ff023 /llvm/lib/Target/SystemZ/SystemZ.h | |
| parent | 30c39c8bf22f07abba6342745d30b2b9398c900f (diff) | |
| download | bcm5719-llvm-dfc96aea900b281d45779ed3602af3431f5143e9.tar.gz bcm5719-llvm-dfc96aea900b281d45779ed3602af3431f5143e9.zip | |
Remove the SystemZ backend.
llvm-svn: 142878
Diffstat (limited to 'llvm/lib/Target/SystemZ/SystemZ.h')
| -rw-r--r-- | llvm/lib/Target/SystemZ/SystemZ.h | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/llvm/lib/Target/SystemZ/SystemZ.h b/llvm/lib/Target/SystemZ/SystemZ.h deleted file mode 100644 index 88960b9cc60..00000000000 --- a/llvm/lib/Target/SystemZ/SystemZ.h +++ /dev/null @@ -1,52 +0,0 @@ -//=-- SystemZ.h - Top-level interface for SystemZ representation -*- 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 entry points for global functions defined in -// the LLVM SystemZ backend. -// -//===----------------------------------------------------------------------===// - -#ifndef LLVM_TARGET_SystemZ_H -#define LLVM_TARGET_SystemZ_H - -#include "MCTargetDesc/SystemZMCTargetDesc.h" -#include "llvm/Target/TargetMachine.h" - -namespace llvm { - class SystemZTargetMachine; - class FunctionPass; - class formatted_raw_ostream; - - namespace SystemZCC { - // SystemZ specific condition code. These correspond to SYSTEMZ_*_COND in - // SystemZInstrInfo.td. They must be kept in synch. - enum CondCodes { - O = 0, - H = 1, - NLE = 2, - L = 3, - NHE = 4, - LH = 5, - NE = 6, - E = 7, - NLH = 8, - HE = 9, - NL = 10, - LE = 11, - NH = 12, - NO = 13, - INVALID = -1 - }; - } - - FunctionPass *createSystemZISelDag(SystemZTargetMachine &TM, - CodeGenOpt::Level OptLevel); - -} // end namespace llvm; -#endif |

