From c72bbe45d6975dcec1a921f0c603283b94fe6701 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20=27Griwes=27=20Dominiak?= Date: Mon, 23 Sep 2019 23:21:55 +0200 Subject: [PATCH] Fix a typo in compiler detection. Bug 200553693 This is the beginning of a history rewrite annotation. This is a rewrite of a commit originally made in submodule .upstream-tests. Original hash: a6b4bfde326006234e8204fa4455d3fb4910ec76. --- .upstream-tests/utils/libcxx/compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.upstream-tests/utils/libcxx/compiler.py b/.upstream-tests/utils/libcxx/compiler.py index 3fe9182980..08e1d0b4a4 100644 --- a/.upstream-tests/utils/libcxx/compiler.py +++ b/.upstream-tests/utils/libcxx/compiler.py @@ -89,7 +89,7 @@ def _initTypeAndVersion(self): major_ver = macros['__CUDACC_VER_MAJOR__'] minor_ver = macros['__CUDACC_VER_MINOR__'] patchlevel = macros['__CUDACC_VER_BUILD__'] - if '__LIBCUDACXX_NVRTC_TEST__' in macro.keys(): + if '__LIBCUDACXX_NVRTC_TEST__' in macros.keys(): self.is_nvrtc = True elif '__PGIC__' in macros.keys(): compiler_type = "pgi"