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 | e50794adda9256d6fe2f378c01ee3c44e1fbd86c (patch) | |
tree | b0b61ecd6bb4ed6f73e30af2880ee723f5f27191 /lib/Target/X86/X86.h | |
parent | 718996654b27d995ba64f45d11ab13cdb015805d (diff) | |
download | external_llvm-e50794adda9256d6fe2f378c01ee3c44e1fbd86c.zip external_llvm-e50794adda9256d6fe2f378c01ee3c44e1fbd86c.tar.gz external_llvm-e50794adda9256d6fe2f378c01ee3c44e1fbd86c.tar.bz2 |
- Enable x86 isel preprocessing by default unless -fast is specified.
- Also disable isel load folding if -fast.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29956 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86.h')
-rw-r--r-- | lib/Target/X86/X86.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86.h b/lib/Target/X86/X86.h index e6deda6..11a6386 100644 --- a/lib/Target/X86/X86.h +++ b/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 |