mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 04:38:24 +00:00
Disable generation of pointer vectors by BBVectorize.
Once vector-of-pointer support works, then this can be reverted. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166741 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -99,8 +99,9 @@ static cl::opt<bool>
|
||||
NoFloats("bb-vectorize-no-floats", cl::init(false), cl::Hidden,
|
||||
cl::desc("Don't try to vectorize floating-point values"));
|
||||
|
||||
// FIXME: This should default to false once pointer vector support works.
|
||||
static cl::opt<bool>
|
||||
NoPointers("bb-vectorize-no-pointers", cl::init(false), cl::Hidden,
|
||||
NoPointers("bb-vectorize-no-pointers", cl::init(/*false*/ true), cl::Hidden,
|
||||
cl::desc("Don't try to vectorize pointer values"));
|
||||
|
||||
static cl::opt<bool>
|
||||
|
Reference in New Issue
Block a user