forked from OSchip/llvm-project
[driver] Lipo can handle the lto-bc type.
rdar://12000401 llvm-svn: 161216
This commit is contained in:
parent
baeb60e919
commit
637ecd2098
|
@ -67,7 +67,8 @@ bool types::appendSuffixForType(ID Id) {
|
||||||
bool types::canLipoType(ID Id) {
|
bool types::canLipoType(ID Id) {
|
||||||
return (Id == TY_Nothing ||
|
return (Id == TY_Nothing ||
|
||||||
Id == TY_Image ||
|
Id == TY_Image ||
|
||||||
Id == TY_Object);
|
Id == TY_Object ||
|
||||||
|
Id == TY_LTO_BC);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool types::isAcceptedByClang(ID Id) {
|
bool types::isAcceptedByClang(ID Id) {
|
||||||
|
|
Loading…
Reference in New Issue