diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2014-07-01 15:39:32 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2014-07-01 15:39:32 +0000 |
commit | f2c4baf01b3ed3d8e85a4dabbd14c358bda99576 (patch) | |
tree | 162845ae358d87b28181ce991b4200c538d8816a /llvm/unittests/Support/ScaledNumberTest.cpp | |
parent | 5c92115972dd7f831f1994bb8e0e347cd80559a1 (diff) | |
download | llvm-f2c4baf01b3ed3d8e85a4dabbd14c358bda99576.zip llvm-f2c4baf01b3ed3d8e85a4dabbd14c358bda99576.tar.gz llvm-f2c4baf01b3ed3d8e85a4dabbd14c358bda99576.tar.bz2 |
Remove unused typedef. GCC warns about this.
llvm-svn: 212105
Diffstat (limited to 'llvm/unittests/Support/ScaledNumberTest.cpp')
-rw-r--r-- | llvm/unittests/Support/ScaledNumberTest.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/unittests/Support/ScaledNumberTest.cpp b/llvm/unittests/Support/ScaledNumberTest.cpp index 2565873e..7bbef7e 100644 --- a/llvm/unittests/Support/ScaledNumberTest.cpp +++ b/llvm/unittests/Support/ScaledNumberTest.cpp @@ -323,9 +323,6 @@ TEST(ScaledNumberHelpersTest, compare) { } TEST(ScaledNumberHelpersTest, matchScales) { - typedef std::tuple<uint32_t, int16_t, uint32_t, int16_t> Pair32; - typedef std::tuple<uint64_t, int16_t, uint64_t, int16_t> Pair64; - #define MATCH_SCALES(T, LDIn, LSIn, RDIn, RSIn, LDOut, RDOut, SOut) \ do { \ T LDx = LDIn; \ |