summaryrefslogtreecommitdiff
path: root/lib/Target/BPF/BPFTargetMachine.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Target/BPF/BPFTargetMachine.h')
-rw-r--r--lib/Target/BPF/BPFTargetMachine.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/BPF/BPFTargetMachine.h b/lib/Target/BPF/BPFTargetMachine.h
index 6aeafb99a2ad0..c715fd5f00893 100644
--- a/lib/Target/BPF/BPFTargetMachine.h
+++ b/lib/Target/BPF/BPFTargetMachine.h
@@ -23,8 +23,8 @@ class BPFTargetMachine : public LLVMTargetMachine {
BPFSubtarget Subtarget;
public:
- BPFTargetMachine(const Target &T, StringRef TT, StringRef CPU, StringRef FS,
- const TargetOptions &Options, Reloc::Model RM,
+ BPFTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
+ StringRef FS, const TargetOptions &Options, Reloc::Model RM,
CodeModel::Model CM, CodeGenOpt::Level OL);
const BPFSubtarget *getSubtargetImpl() const { return &Subtarget; }
@@ -38,6 +38,6 @@ public:
return TLOF.get();
}
};
-}
+} // namespace llvm
#endif