diff options
author | David Blaikie <dblaikie@gmail.com> | 2012-12-12 22:14:32 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2012-12-12 22:14:32 +0000 |
commit | b088ff661763a1486392c89cdb5a884d22cad28d (patch) | |
tree | 931bfb577bd285f0841845932f278f110f9db837 /llvm/unittests | |
parent | 323bcb9eb9c549fe610954ef308c52f4c4ea7a67 (diff) | |
download | bcm5719-llvm-b088ff661763a1486392c89cdb5a884d22cad28d.tar.gz bcm5719-llvm-b088ff661763a1486392c89cdb5a884d22cad28d.zip |
Unbreak the build. Fallout from r170019.
llvm-svn: 170033
Diffstat (limited to 'llvm/unittests')
-rw-r--r-- | llvm/unittests/Support/YAMLIOTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/Support/YAMLIOTest.cpp b/llvm/unittests/Support/YAMLIOTest.cpp index c24114a6951..5c9db01a06f 100644 --- a/llvm/unittests/Support/YAMLIOTest.cpp +++ b/llvm/unittests/Support/YAMLIOTest.cpp @@ -552,7 +552,7 @@ namespace yaml { } static StringRef input(StringRef scalar, void *, MyNumber &value) { - int64_t n; + long long n; if ( getAsSignedInteger(scalar, 0, n) ) return "invalid number"; value = n; |