From 301f3da5162499965287338a0cd52309fb28e8b8 Mon Sep 17 00:00:00 2001 From: Muhammad Omair Javaid Date: Tue, 20 Dec 2022 13:56:03 +0500 Subject: [PATCH] [CLANG] Fix typo in test/CodeGen/c-strings.c This patch fixes a typo in test/CodeGen/c-strings.c. Test was failing on AArch64/Windows. --- clang/test/CodeGen/c-strings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/test/CodeGen/c-strings.c b/clang/test/CodeGen/c-strings.c index abb4a83..988deee 100644 --- a/clang/test/CodeGen/c-strings.c +++ b/clang/test/CodeGen/c-strings.c @@ -1,4 +1,4 @@ -// XFAIL: taraget=aarch64-pc-windows-{{.*}} +// XFAIL: target=aarch64-pc-windows-{{.*}} // RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm -o - %s | FileCheck %s --check-prefix=CHECK --check-prefix=ITANIUM // RUN: %clang_cc1 -triple %ms_abi_triple -emit-llvm -o - %s | FileCheck %s --check-prefix=CHECK --check-prefix=MSABI -- 2.7.4