Home | History | Annotate | Download | only in ExecutionEngine

Lines Matching defs:Target

1 //===-- TargetSelect.cpp - Target Chooser Code ----------------------------===//
10 // This just asks the TargetRegistry for the appropriate target to use, and
24 #include "llvm/Target/TargetMachine.h"
39 /// selectTarget - Pick a target either via -march or by guessing the native
50 const Target *TheTarget = nullptr;
82 // Package up features to be passed to target/subtarget
99 // Allocate a target...
100 TargetMachine *Target = TheTarget->createTargetMachine(TheTriple.getTriple(),
105 assert(Target && "Could not allocate target machine!");
106 return Target;