From 82c87a4b94fbeaf860bcdd363ffab7e245c9c468 Mon Sep 17 00:00:00 2001 From: Sanjay Patel Date: Wed, 2 Dec 2015 23:06:17 +0000 Subject: [PATCH] fix typos; NFC git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@254561 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/fp-contract-pragma.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/CodeGen/fp-contract-pragma.cpp b/test/CodeGen/fp-contract-pragma.cpp index b4e24b9e68..86e236e4db 100644 --- a/test/CodeGen/fp-contract-pragma.cpp +++ b/test/CodeGen/fp-contract-pragma.cpp @@ -1,6 +1,6 @@ // RUN: %clang_cc1 -O3 -triple %itanium_abi_triple -emit-llvm -o - %s | FileCheck %s -// Is FP_CONTRACT is honored in a simple case? +// Is FP_CONTRACT honored in a simple case? float fp_contract_1(float a, float b, float c) { // CHECK: _Z13fp_contract_1fff // CHECK: tail call float @llvm.fmuladd @@ -19,7 +19,7 @@ float fp_contract_2(float a, float b, float c) { return a * b + c; } -// Does FP_CONTRACT survive template instatiation? +// Does FP_CONTRACT survive template instantiation? class Foo {}; Foo operator+(Foo, Foo); -- 2.40.0