mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
[AVX] Unique BitInit
Keep only two copies of BitInit: one for true and one for false. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136488 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ba1ae18287
commit
0ffd167a01
@ -1,3 +1,4 @@
|
||||
|
||||
//===- Record.cpp - Record implementation ---------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
@ -448,7 +449,10 @@ const UnsetInit *UnsetInit::get() {
|
||||
}
|
||||
|
||||
const BitInit *BitInit::get(bool V) {
|
||||
return new BitInit(V);
|
||||
static const BitInit True(true);
|
||||
static const BitInit False(false);
|
||||
|
||||
return V ? &True : &False;
|
||||
}
|
||||
|
||||
const BitsInit *BitsInit::get(ArrayRef<const Init *> Range) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user