diff options
author | Tim Northover <tnorthover@apple.com> | 2014-03-29 10:18:08 +0000 |
---|---|---|
committer | Tim Northover <tnorthover@apple.com> | 2014-03-29 10:18:08 +0000 |
commit | 00ed9964c65962e2afc8e3c83a2f7114b0ce25a0 (patch) | |
tree | 21404a5e99549c2f98d72eac05f9df0b484d2d28 /llvm/unittests/ADT/TripleTest.cpp | |
parent | 3e38d290c872ae8d875b8dbe2d55262cee3a3cf9 (diff) | |
download | llvm-00ed9964c65962e2afc8e3c83a2f7114b0ce25a0.zip llvm-00ed9964c65962e2afc8e3c83a2f7114b0ce25a0.tar.gz llvm-00ed9964c65962e2afc8e3c83a2f7114b0ce25a0.tar.bz2 |
ARM64: initial backend import
This adds a second implementation of the AArch64 architecture to LLVM,
accessible in parallel via the "arm64" triple. The plan over the
coming weeks & months is to merge the two into a single backend,
during which time thorough code review should naturally occur.
Everything will be easier with the target in-tree though, hence this
commit.
llvm-svn: 205090
Diffstat (limited to 'llvm/unittests/ADT/TripleTest.cpp')
-rw-r--r-- | llvm/unittests/ADT/TripleTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/ADT/TripleTest.cpp b/llvm/unittests/ADT/TripleTest.cpp index 04b795e..52d7de9 100644 --- a/llvm/unittests/ADT/TripleTest.cpp +++ b/llvm/unittests/ADT/TripleTest.cpp @@ -354,7 +354,7 @@ TEST(TripleTest, BitWidthArchVariants) { T.setArch(Triple::arm); EXPECT_EQ(Triple::arm, T.get32BitArchVariant().getArch()); - EXPECT_EQ(Triple::UnknownArch, T.get64BitArchVariant().getArch()); + EXPECT_EQ(Triple::arm64, T.get64BitArchVariant().getArch()); T.setArch(Triple::mips); EXPECT_EQ(Triple::mips, T.get32BitArchVariant().getArch()); |