diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-07-17 19:40:21 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-07-17 19:53:00 +0300 |
commit | ce77fb89b991ef0537d72538ae0933b13fe09824 (patch) | |
tree | ba6fdb0ed19752f45a5feb08c19e347871819a23 /mesonbuild | |
parent | be92a6a3a60666f4dd00c96833cfdbf7706ffb05 (diff) | |
download | meson-ce77fb89b991ef0537d72538ae0933b13fe09824.zip meson-ce77fb89b991ef0537d72538ae0933b13fe09824.tar.gz meson-ce77fb89b991ef0537d72538ae0933b13fe09824.tar.bz2 |
Renamed test case number to avoid dupes.
Diffstat (limited to 'mesonbuild')
-rw-r--r-- | mesonbuild/compilers/c.py | 2 | ||||
-rw-r--r-- | mesonbuild/modules/simd.py | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/mesonbuild/compilers/c.py b/mesonbuild/compilers/c.py index 4aac542..593366a 100644 --- a/mesonbuild/compilers/c.py +++ b/mesonbuild/compilers/c.py @@ -25,6 +25,8 @@ from .compilers import ( msvc_buildtype_args, msvc_buildtype_linker_args, msvc_winlibs, + vs32_instruction_set_args, + vs64_instruction_set_args, ClangCompiler, Compiler, CompilerArgs, diff --git a/mesonbuild/modules/simd.py b/mesonbuild/modules/simd.py index b666f4b..12d9839 100644 --- a/mesonbuild/modules/simd.py +++ b/mesonbuild/modules/simd.py @@ -44,7 +44,7 @@ class SimdModule(ExtensionModule): if 'compiler' not in kwargs: raise mesonlib.MesonException('Must specify compiler keyword') compiler = kwargs['compiler'].compiler - if not isinstance(compiler, compilers.Compiler): + if not isinstance(compiler, compilers.compilers.Compiler): raise mesonlib.MesonException('Compiler argument must be a compiler object.') cdata = interpreter.func_configuration_data(None, [], {}) conf = cdata.held_object |