diff options
author | Chris Lattner <sabre@nondot.org> | 2004-07-11 08:24:02 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-07-11 08:24:02 +0000 |
commit | 802cffd928baf87277525c7d818a9a8e46195fbd (patch) | |
tree | 8462d04b97c6da273eaa962714394df7fb35076b /llvm/lib/ExecutionEngine | |
parent | c4e6bb5f9fac6dc724845bfd09a4b079e515f533 (diff) | |
download | bcm5719-llvm-802cffd928baf87277525c7d818a9a8e46195fbd.tar.gz bcm5719-llvm-802cffd928baf87277525c7d818a9a8e46195fbd.zip |
The cleanup is done. Update comment.
llvm-svn: 14761
Diffstat (limited to 'llvm/lib/ExecutionEngine')
-rw-r--r-- | llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp b/llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp index a14b365b61e..7ef06a52200 100644 --- a/llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp +++ b/llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp @@ -7,11 +7,8 @@ // //===----------------------------------------------------------------------===// // -// This file contains the hideously gross code that is currently used to select -// a particular TargetMachine for the JIT to use. This should obviously be -// improved in the future, probably by having the TargetMachines register -// themselves with the runtime, and then have them choose themselves if they -// match the current machine. +// This just asks the TargetMachineRegistry for the appropriate JIT to use, and +// allows the user to specify a specific one on the commandline with -march=x. // //===----------------------------------------------------------------------===// |