diff options
author | Brad Smith <brad@comstyle.com> | 2017-02-28 17:28:35 +0000 |
---|---|---|
committer | Brad Smith <brad@comstyle.com> | 2017-02-28 17:28:35 +0000 |
commit | 159f3bb80e8e85bed3426cf015c765a842383322 (patch) | |
tree | 0fe4efe817e569e6a6f3faa0a52c490011d72870 /llvm/lib/Support/Triple.cpp | |
parent | 3246aecb42c2b4ec45b7192d1ba8ecb763b05a6a (diff) | |
download | llvm-159f3bb80e8e85bed3426cf015c765a842383322.zip llvm-159f3bb80e8e85bed3426cf015c765a842383322.tar.gz llvm-159f3bb80e8e85bed3426cf015c765a842383322.tar.bz2 |
Set default CPU for OpenBSD/arm to Cortex-A8
llvm-svn: 296493
Diffstat (limited to 'llvm/lib/Support/Triple.cpp')
-rw-r--r-- | llvm/lib/Support/Triple.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Support/Triple.cpp b/llvm/lib/Support/Triple.cpp index 5c37dfc..64d5977 100644 --- a/llvm/lib/Support/Triple.cpp +++ b/llvm/lib/Support/Triple.cpp @@ -1515,6 +1515,7 @@ StringRef Triple::getARMCPUForArch(StringRef MArch) const { return "strongarm"; } case llvm::Triple::NaCl: + case llvm::Triple::OpenBSD: return "cortex-a8"; default: switch (getEnvironment()) { |