From 30140cd24920a2c5469f503df7b39532c7af292d Mon Sep 17 00:00:00 2001 From: Tobias Gysi Date: Mon, 22 Jun 2020 19:53:01 +0200 Subject: [PATCH] [llvm] Fix typo in test case comment (NFC) --- llvm/test/Transforms/Inline/always-inline.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/test/Transforms/Inline/always-inline.ll b/llvm/test/Transforms/Inline/always-inline.ll index 791eb94779b7..81cbb73fbf59 100644 --- a/llvm/test/Transforms/Inline/always-inline.ll +++ b/llvm/test/Transforms/Inline/always-inline.ll @@ -212,7 +212,7 @@ entry: ; CHECK: ret void } -; The 'inner10' and 'outer10' functions test a frustrating consquence of the +; The 'inner10' and 'outer10' functions test a frustrating consequence of the ; current 'alwaysinline' semantic model. Because such functions are allowed to ; be external functions, it may be necessary to both inline all of their uses ; and leave them in the final output. These tests can be removed if and when