diff options
Diffstat (limited to 'llvm/lib/Support/Host.cpp')
-rw-r--r-- | llvm/lib/Support/Host.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/llvm/lib/Support/Host.cpp b/llvm/lib/Support/Host.cpp index 3336587a..f873ff0 100644 --- a/llvm/lib/Support/Host.cpp +++ b/llvm/lib/Support/Host.cpp @@ -324,8 +324,11 @@ StringRef getCPUNameFromS390Model(unsigned int Id, bool HaveVectorSupport) { return HaveVectorSupport? "z14" : "zEC12"; case 8561: case 8562: - default: return HaveVectorSupport? "z15" : "zEC12"; + case 3931: + case 3932: + default: + return HaveVectorSupport? "arch14" : "zEC12"; } } } // end anonymous namespace |