From 68b40cfe2728889d4bd86ff073b3b69fb8608e5a Mon Sep 17 00:00:00 2001 From: Vinson Lee Date: Tue, 17 Mar 2020 13:55:07 -0700 Subject: [PATCH] swr: Remove Byte Order Mark. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit before: $ file src/gallium/drivers/swr/rasterizer/codegen/gen_llvm_types.py src/gallium/drivers/swr/rasterizer/codegen/gen_llvm_types.py: Python script text executable, UTF-8 Unicode (with BOM) text after: $ file src/gallium/drivers/swr/rasterizer/codegen/gen_llvm_types.py src/gallium/drivers/swr/rasterizer/codegen/gen_llvm_types.py: Python script text executable, ASCII text This patch also fixes this build error. File "src/gallium/drivers/swr/rasterizer/codegen/gen_llvm_types.py", line 1 # Copyright (C) 2014-2018 Intel Corporation. All Rights Reserved. ^ SyntaxError: invalid character in identifier Fixes: c6e67f5a9373 ("gallium/swr: add OpenSWR rasterizer") Signed-off-by: Vinson Lee Reviewed-by: Jan Zielinski Part-of: --- src/gallium/drivers/swr/rasterizer/codegen/gen_llvm_types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/swr/rasterizer/codegen/gen_llvm_types.py b/src/gallium/drivers/swr/rasterizer/codegen/gen_llvm_types.py index 8650220..c26f093 100644 --- a/src/gallium/drivers/swr/rasterizer/codegen/gen_llvm_types.py +++ b/src/gallium/drivers/swr/rasterizer/codegen/gen_llvm_types.py @@ -1,4 +1,4 @@ -# Copyright (C) 2014-2018 Intel Corporation. All Rights Reserved. +# Copyright (C) 2014-2018 Intel Corporation. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), -- 2.7.4