diff options
-rw-r--r-- | lib/Driver/Types.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Driver/Types.cpp b/lib/Driver/Types.cpp index 533e7802fa..9d8fcfd6bb 100644 --- a/lib/Driver/Types.cpp +++ b/lib/Driver/Types.cpp @@ -67,7 +67,8 @@ bool types::appendSuffixForType(ID Id) { bool types::canLipoType(ID Id) { return (Id == TY_Nothing || Id == TY_Image || - Id == TY_Object); + Id == TY_Object || + Id == TY_LTO_BC); } bool types::isAcceptedByClang(ID Id) { |