From e88b17c0ef1d513371016379316c25898cf424a9 Mon Sep 17 00:00:00 2001 From: JF Bastien Date: Thu, 23 Aug 2018 04:09:49 +0000 Subject: [PATCH] Missing quote in previous commit The test was failing because I missed a quote. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@340511 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/pr18235.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CodeGen/pr18235.c b/test/CodeGen/pr18235.c index 881811ed81..bd9261dc7b 100644 --- a/test/CodeGen/pr18235.c +++ b/test/CodeGen/pr18235.c @@ -1,3 +1,3 @@ // RUN: not %clang_cc1 -triple le32-unknown-nacl %s -S -o - 2>&1 | FileCheck %s -// CHECK: error: unable to create target: No available targets are compatible with triple "le32-unknown-nacl" +// CHECK: error: unable to create target: 'No available targets are compatible with triple "le32-unknown-nacl"' -- 2.40.0