summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTyler Nowicki <tyler.nowicki@gmail.com>2015-08-10 21:18:01 +0000
committerTyler Nowicki <tyler.nowicki@gmail.com>2015-08-10 21:18:01 +0000
commit40e5d08a742adbe4c1c4bbcf3c8b068aa1df0780 (patch)
treef6fb35eb21097fb2035deecc4785a662320c9083
parent655e573dc5fc7340ed4adbd1f30c02bc01d7c989 (diff)
downloadbcm5719-llvm-40e5d08a742adbe4c1c4bbcf3c8b068aa1df0780.tar.gz
bcm5719-llvm-40e5d08a742adbe4c1c4bbcf3c8b068aa1df0780.zip
Remove non-ascii characters.
llvm-svn: 244506
-rw-r--r--clang/include/clang/Basic/DiagnosticFrontendKinds.td4
-rw-r--r--clang/test/Frontend/optimization-remark-options.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/clang/include/clang/Basic/DiagnosticFrontendKinds.td b/clang/include/clang/Basic/DiagnosticFrontendKinds.td
index 080c7381b54..c041a4bff29 100644
--- a/clang/include/clang/Basic/DiagnosticFrontendKinds.td
+++ b/clang/include/clang/Basic/DiagnosticFrontendKinds.td
@@ -46,8 +46,8 @@ def remark_fe_backend_optimization_remark_missed : Remark<"%0">, BackendInfo,
def remark_fe_backend_optimization_remark_analysis : Remark<"%0">, BackendInfo,
InGroup<BackendOptimizationRemarkAnalysis>;
def remark_fe_backend_optimization_remark_analysis_fpcommute : Remark<"%0; "
- "allow commutativity by specifying ‘#pragma clang loop vectorize(enable)’ "
- "before the loop or by providing the compiler option ‘-ffast-math’">,
+ "allow commutativity by specifying '#pragma clang loop vectorize(enable)' "
+ "before the loop or by providing the compiler option '-ffast-math'">,
BackendInfo, InGroup<BackendOptimizationRemarkAnalysis>;
def warn_fe_backend_optimization_failure : Warning<"%0">, BackendInfo,
InGroup<BackendOptimizationFailure>, DefaultWarn;
diff --git a/clang/test/Frontend/optimization-remark-options.c b/clang/test/Frontend/optimization-remark-options.c
index 33cc9e015a8..2b22099c100 100644
--- a/clang/test/Frontend/optimization-remark-options.c
+++ b/clang/test/Frontend/optimization-remark-options.c
@@ -1,6 +1,6 @@
// RUN: %clang -O1 -fvectorize -Rpass-analysis=loop-vectorize -emit-llvm -S %s -o - 2>&1 | FileCheck %s
-// CHECK: {{.*}}:9:11: remark: loop not vectorized: vectorization requires changes in the order of operations, however IEEE 754 floating-point operations are not commutative; allow commutativity by specifying ‘#pragma clang loop vectorize(enable)’ before the loop or by providing the compiler option ‘-ffast-math’
+// CHECK: {{.*}}:9:11: remark: loop not vectorized: vectorization requires changes in the order of operations, however IEEE 754 floating-point operations are not commutative; allow commutativity by specifying '#pragma clang loop vectorize(enable)' before the loop or by providing the compiler option '-ffast-math'
double foo(int N) {
double v = 0.0;
OpenPOWER on IntegriCloud