aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRichard Osborne <richard@xmos.com>2009-10-06 15:41:52 +0000
committerRichard Osborne <richard@xmos.com>2009-10-06 15:41:52 +0000
commitd90b176bd923fef57b155202ce529076f3b4c587 (patch)
tree9d268773df16961138a820801b0abadb084b9288 /lib
parentf2519d6193d736ee7f2b9cc24e0143cfa933f79e (diff)
downloadexternal_llvm-d90b176bd923fef57b155202ce529076f3b4c587.zip
external_llvm-d90b176bd923fef57b155202ce529076f3b4c587.tar.gz
external_llvm-d90b176bd923fef57b155202ce529076f3b4c587.tar.bz2
Default to the xs1b subtarget
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83380 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/XCore/XCoreSubtarget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/XCore/XCoreSubtarget.cpp b/lib/Target/XCore/XCoreSubtarget.cpp
index 5fb1eaa..3dd712f 100644
--- a/lib/Target/XCore/XCoreSubtarget.cpp
+++ b/lib/Target/XCore/XCoreSubtarget.cpp
@@ -20,7 +20,7 @@ XCoreSubtarget::XCoreSubtarget(const std::string &TT, const std::string &FS)
: IsXS1A(false),
IsXS1B(false)
{
- std::string CPU = "xs1a-generic";
+ std::string CPU = "xs1b-generic";
// Parse features string.
ParseSubtargetFeatures(FS, CPU);