diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-04-16 14:06:19 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-04-16 14:06:19 +0000 |
commit | 2b85c4595ed870bf08edb37acd79da6993ecc345 (patch) | |
tree | 8118c2df373e8154573dec8db8fb857746739ffa /lib/Target | |
parent | fb0a64a172fa405f7d0bcdd11226b99b433b8522 (diff) | |
download | external_llvm-2b85c4595ed870bf08edb37acd79da6993ecc345.zip external_llvm-2b85c4595ed870bf08edb37acd79da6993ecc345.tar.gz external_llvm-2b85c4595ed870bf08edb37acd79da6993ecc345.tar.bz2 |
For PR1336:
Subtarget option names must be given in lower case in order to be
recognized. Fixes test/CodeGen/Alpha/ctlz.ll
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36125 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target')
-rw-r--r-- | lib/Target/Alpha/Alpha.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/Alpha/Alpha.td b/lib/Target/Alpha/Alpha.td index 1b929c7..fbf7ed9 100644 --- a/lib/Target/Alpha/Alpha.td +++ b/lib/Target/Alpha/Alpha.td @@ -20,7 +20,7 @@ include "../Target.td" // Subtarget Features //===----------------------------------------------------------------------===// -def FeatureCIX : SubtargetFeature<"CIX", "HasCT", "true", +def FeatureCIX : SubtargetFeature<"cix", "HasCT", "true", "Enable CIX extentions">; //===----------------------------------------------------------------------===// |