Dan Gohman | fecb35a | 2009-01-16 22:49:36 +0000 | [diff] [blame^] | 1 | //====---- IA64Subtarget.h - Define Subtarget for the IA64 -----*- C++ -*--===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file declares the IA64 specific subclass of TargetSubtarget. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef IA64SUBTARGET_H |
| 15 | #define IA64SUBTARGET_H |
| 16 | |
| 17 | #include "llvm/Target/TargetSubtarget.h" |
| 18 | |
| 19 | namespace llvm { |
| 20 | |
| 21 | class IA64Subtarget : public TargetSubtarget { |
| 22 | public: |
| 23 | IA64Subtarget(); |
| 24 | }; |
| 25 | |
| 26 | } // End llvm namespace |
| 27 | |
| 28 | #endif |