diff options
| author | Craig Topper <craig.topper@intel.com> | 2018-01-07 21:03:43 +0000 |
|---|---|---|
| committer | Craig Topper <craig.topper@intel.com> | 2018-01-07 21:03:43 +0000 |
| commit | e9f44e1b8083543fc7970dd3ba27abe6293db31c (patch) | |
| tree | da51854fdb2c9dd7ac140d32ea9702284c61a534 /llvm/lib | |
| parent | 93b8bd49550750cb88f7a65f93674a2516ea51cf (diff) | |
| download | bcm5719-llvm-e9f44e1b8083543fc7970dd3ba27abe6293db31c.tar.gz bcm5719-llvm-e9f44e1b8083543fc7970dd3ba27abe6293db31c.zip | |
[X86] Revert accidental change to CMakeLists.txt in r321952
I had removed the qualifiers around the autogenerated folding table so I could compare with the manual table, but didn't intend to commit the change.
llvm-svn: 321971
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/X86/CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/CMakeLists.txt b/llvm/lib/Target/X86/CMakeLists.txt index c3b16e20bf8..7e0df294146 100644 --- a/llvm/lib/Target/X86/CMakeLists.txt +++ b/llvm/lib/Target/X86/CMakeLists.txt @@ -14,7 +14,9 @@ tablegen(LLVM X86GenEVEX2VEXTables.inc -gen-x86-EVEX2VEX-tables) tablegen(LLVM X86GenRegisterBank.inc -gen-register-bank) tablegen(LLVM X86GenGlobalISel.inc -gen-global-isel) -tablegen(LLVM X86GenFoldTables.inc -gen-x86-fold-tables) +if (X86_GEN_FOLD_TABLES) + tablegen(LLVM X86GenFoldTables.inc -gen-x86-fold-tables) +endif() add_public_tablegen_target(X86CommonTableGen) |

