diff options
Diffstat (limited to 'llvm/include/llvm/ADT/FloatingPointMode.h')
| -rw-r--r-- | llvm/include/llvm/ADT/FloatingPointMode.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/ADT/FloatingPointMode.h b/llvm/include/llvm/ADT/FloatingPointMode.h index 0314b4c..a9702c6 100644 --- a/llvm/include/llvm/ADT/FloatingPointMode.h +++ b/llvm/include/llvm/ADT/FloatingPointMode.h @@ -191,7 +191,7 @@ inline DenormalMode::DenormalModeKind  parseDenormalFPAttributeComponent(StringRef Str) {    // Assume ieee on unspecified attribute.    return StringSwitch<DenormalMode::DenormalModeKind>(Str) -      .Cases("", "ieee", DenormalMode::IEEE) +      .Cases({"", "ieee"}, DenormalMode::IEEE)        .Case("preserve-sign", DenormalMode::PreserveSign)        .Case("positive-zero", DenormalMode::PositiveZero)        .Case("dynamic", DenormalMode::Dynamic)  | 
