Use %ull here.
[llvm/stm8.git] / lib / Target / XCore / XCoreSubtarget.h
blobf8be3ec8618917475818a3ea4b463ff891d39db1
1 //=====-- XCoreSubtarget.h - Define Subtarget for the XCore -----*- 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 XCore specific subclass of TargetSubtarget.
12 //===----------------------------------------------------------------------===//
14 #ifndef XCORESUBTARGET_H
15 #define XCORESUBTARGET_H
17 #include "llvm/Target/TargetSubtarget.h"
18 #include "llvm/Target/TargetMachine.h"
20 #include <string>
22 namespace llvm {
24 class XCoreSubtarget : public TargetSubtarget {
26 public:
27 /// This constructor initializes the data members to match that
28 /// of the specified triple.
29 ///
30 XCoreSubtarget(const std::string &TT, const std::string &FS);
32 /// ParseSubtargetFeatures - Parses features string setting specified
33 /// subtarget options. Definition of function is auto generated by tblgen.
34 std::string ParseSubtargetFeatures(const std::string &FS,
35 const std::string &CPU);
37 } // End llvm namespace
39 #endif