From 000b7156b7ac0ff934f4fc97a1ea4410052a3356 Mon Sep 17 00:00:00 2001 From: Hans Wennborg Date: Wed, 1 Aug 2018 13:19:14 +0000 Subject: [PATCH] Make test/Frontend/clang-abi-compat.cpp pass when the version goes to 8 llvm-svn: 338534 --- clang/test/Frontend/clang-abi-compat.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/test/Frontend/clang-abi-compat.cpp b/clang/test/Frontend/clang-abi-compat.cpp index 7ee9464..b7f2758 100644 --- a/clang/test/Frontend/clang-abi-compat.cpp +++ b/clang/test/Frontend/clang-abi-compat.cpp @@ -1,6 +1,6 @@ // RUN: not %clang_cc1 -fclang-abi-compat=banana %s -fsyntax-only 2>&1 | FileCheck --check-prefix=INVALID %s // RUN: not %clang_cc1 -fclang-abi-compat=2.9 %s -fsyntax-only 2>&1 | FileCheck --check-prefix=INVALID %s -// RUN: not %clang_cc1 -fclang-abi-compat=8 %s -fsyntax-only 2>&1 | FileCheck --check-prefix=INVALID %s +// RUN: not %clang_cc1 -fclang-abi-compat=42 %s -fsyntax-only 2>&1 | FileCheck --check-prefix=INVALID %s // RUN: not %clang_cc1 -fclang-abi-compat=3.10 %s -fsyntax-only 2>&1 | FileCheck --check-prefix=INVALID %s // RUN: not %clang_cc1 -fclang-abi-compat=4.1 %s -fsyntax-only 2>&1 | FileCheck --check-prefix=INVALID %s // RUN: not %clang_cc1 -fclang-abi-compat=04 %s -fsyntax-only 2>&1 | FileCheck --check-prefix=INVALID %s -- 2.7.4