CoerceAndExpand switch warnings after latest clang/llvm stable merge

Just a heads up - the latest stable merge exposed a couple of switch warnings:

swift/lib/IRGen/GenFunc.cpp:1338:13: warning: enumeration value 'CoerceAndExpand' not handled in switch [-Wswitch]
    switch (AI.getKind()) {
            ^
swift/lib/IRGen/GenFunc.cpp:2916:13: warning: enumeration value 'CoerceAndExpand' not handled in switch [-Wswitch]
    switch (AI.getKind()) {
            ^
2 warnings generated.
[171/926] Building CXX object lib/IRGen/CMakeFiles/swiftIRGen.dir/IRGenSIL.cpp.o
swift/lib/IRGen/IRGenSIL.cpp:1280:13: warning: enumeration value 'CoerceAndExpand' not handled in switch [-Wswitch]
    switch (AI.getKind()) {
            ^

David

I'll get to it. It's harmless for now.

John.

···

On Apr 4, 2016, at 3:02 PM, David Farler via swift-dev <swift-dev@swift.org> wrote:
Just a heads up - the latest stable merge exposed a couple of switch warnings:

swift/lib/IRGen/GenFunc.cpp:1338:13: warning: enumeration value 'CoerceAndExpand' not handled in switch [-Wswitch]
   switch (AI.getKind()) {
           ^
swift/lib/IRGen/GenFunc.cpp:2916:13: warning: enumeration value 'CoerceAndExpand' not handled in switch [-Wswitch]
   switch (AI.getKind()) {
           ^
2 warnings generated.
[171/926] Building CXX object lib/IRGen/CMakeFiles/swiftIRGen.dir/IRGenSIL.cpp.o
swift/lib/IRGen/IRGenSIL.cpp:1280:13: warning: enumeration value 'CoerceAndExpand' not handled in switch [-Wswitch]
   switch (AI.getKind()) {
           ^

[SR-1157] warning: enumeration value 'CoerceAndExpand' not handled in switch · Issue #43765 · apple/swift · GitHub