Commit 93767657 authored by Kevin Modzelewski's avatar Kevin Modzelewski

Note from the llvm-dev list

parent 280b774e
...@@ -27,6 +27,7 @@ ...@@ -27,6 +27,7 @@
#include "llvm/IR/Module.h" #include "llvm/IR/Module.h"
#include "llvm/Support/CommandLine.h" #include "llvm/Support/CommandLine.h"
#include "llvm/Support/DynamicLibrary.h" #include "llvm/Support/DynamicLibrary.h"
#include "llvm/Support/Host.h"
#include "llvm/Support/FileSystem.h" #include "llvm/Support/FileSystem.h"
#include "llvm/Support/Path.h" #include "llvm/Support/Path.h"
#include "llvm/Support/TargetSelect.h" #include "llvm/Support/TargetSelect.h"
...@@ -205,6 +206,9 @@ void initCodegen() { ...@@ -205,6 +206,9 @@ void initCodegen() {
// target_options.EnableFastISel = true; // target_options.EnableFastISel = true;
eb.setTargetOptions(target_options); eb.setTargetOptions(target_options);
// TODO enable this? should let us get better code:
// eb.setMCPU(llvm::sys::getHostCPUName());
g.tm = eb.selectTarget(); g.tm = eb.selectTarget();
assert(g.tm && "failed to get a target machine"); assert(g.tm && "failed to get a target machine");
g.engine = eb.create(g.tm); g.engine = eb.create(g.tm);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment