forked from OSchip/llvm-project
[Passes] Enable the relative lookup table converter pass on aarch64
Afterd5c5cf5ce8
, it should work fine for aarch64 on COFF too. (It was disabled when the patch was (re)applied ine96df3e531
, pending that fix.)
This commit is contained in:
parent
2fea5d5d4a
commit
57b259a852
|
@ -397,11 +397,6 @@ public:
|
|||
if (!TargetTriple.isArch64Bit())
|
||||
return false;
|
||||
|
||||
// TODO: Triggers an issue in aarch64, so temporarily disable it.
|
||||
// See https://reviews.llvm.org/D99572 for more information.
|
||||
if (TargetTriple.getArch() == Triple::aarch64)
|
||||
return false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue