From e5a7239cae0cbbbd8e3defc81ab7f53d5f811100 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Wed, 2 Jun 2004 00:29:52 +0000 Subject: [PATCH] Fix a double negation (in grammar). llvm-svn: 13943 --- llvm/tools/llvm-stub/llvm-stub.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/tools/llvm-stub/llvm-stub.c b/llvm/tools/llvm-stub/llvm-stub.c index 931f98a3d569..a64c5df9f47b 100644 --- a/llvm/tools/llvm-stub/llvm-stub.c +++ b/llvm/tools/llvm-stub/llvm-stub.c @@ -15,7 +15,7 @@ // // This allows the end user to just say ./ and have the JIT executed // automatically. On unix, the stub executable emitted is actually a bourne -// shell script that does the forwarding. Windows doesn't not like #!/bin/sh +// shell script that does the forwarding. Windows does not like #!/bin/sh // programs in .exe files, so we make it an actual program, defined here. // //===----------------------------------------------------------------------===*/