diff options
author | Evan Cheng <evan.cheng@apple.com> | 2006-08-29 18:28:33 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2006-08-29 18:28:33 +0000 |
commit | 358b9ed98a3c54cfb28ae53e2e67102339747978 (patch) | |
tree | 8537a7db928094897328fec540cb7f4dea4202c1 /llvm/lib/Target/X86/X86.h | |
parent | 9b675bd769a880f1164696777c3d260243c9f543 (diff) | |
download | bcm5719-llvm-358b9ed98a3c54cfb28ae53e2e67102339747978.tar.gz bcm5719-llvm-358b9ed98a3c54cfb28ae53e2e67102339747978.zip |
- Enable x86 isel preprocessing by default unless -fast is specified.
- Also disable isel load folding if -fast.
llvm-svn: 29956
Diffstat (limited to 'llvm/lib/Target/X86/X86.h')
-rw-r--r-- | llvm/lib/Target/X86/X86.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86.h b/llvm/lib/Target/X86/X86.h index e6deda620e2..11a63868d98 100644 --- a/llvm/lib/Target/X86/X86.h +++ b/llvm/lib/Target/X86/X86.h @@ -28,7 +28,7 @@ class MachineCodeEmitter; /// createX86ISelDag - This pass converts a legalized DAG into a /// X86-specific DAG, ready for instruction scheduling. /// -FunctionPass *createX86ISelDag(X86TargetMachine &TM); +FunctionPass *createX86ISelDag(X86TargetMachine &TM, bool Fast); /// createX86FloatingPointStackifierPass - This function returns a pass which /// converts floating point register references and pseudo instructions into |