projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
21eca2a
)
Fix a typo pointd out by Maarten ter Huurne.
author
Evan Cheng
<evan.cheng@apple.com>
Mon, 13 Aug 2007 23:27:11 +0000
(23:27 +0000)
committer
Evan Cheng
<evan.cheng@apple.com>
Mon, 13 Aug 2007 23:27:11 +0000
(23:27 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41059
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Target/X86/X86ISelLowering.cpp
patch
|
blob
|
history
diff --git
a/lib/Target/X86/X86ISelLowering.cpp
b/lib/Target/X86/X86ISelLowering.cpp
index 11b5662199856ff5fd4424eee6d0a24ac6e71ac1..ab7a7edbfc7d33ad64ecaafb0d599adf850c389b 100644
(file)
--- a/
lib/Target/X86/X86ISelLowering.cpp
+++ b/
lib/Target/X86/X86ISelLowering.cpp
@@
-5061,7
+5061,7
@@
getRegClassForInlineAsmConstraint(const std::string &Constraint,
else if (VT == MVT::i16)
return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX, 0);
else if (VT == MVT::i8)
- return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::
D
L, 0);
+ return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::
B
L, 0);
break;
}
}