[llvm-commits] [llvm] r170033 - /llvm/trunk/unittests/Support/YAMLIOTest.cpp
David Blaikie
dblaikie at gmail.com
Wed Dec 12 14:14:32 PST 2012
Author: dblaikie
Date: Wed Dec 12 16:14:32 2012
New Revision: 170033
URL: http://llvm.org/viewvc/llvm-project?rev=170033&view=rev
Log:
Unbreak the build. Fallout from r170019.
Modified:
llvm/trunk/unittests/Support/YAMLIOTest.cpp
Modified: llvm/trunk/unittests/Support/YAMLIOTest.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/Support/YAMLIOTest.cpp?rev=170033&r1=170032&r2=170033&view=diff
==============================================================================
--- llvm/trunk/unittests/Support/YAMLIOTest.cpp (original)
+++ llvm/trunk/unittests/Support/YAMLIOTest.cpp Wed Dec 12 16:14:32 2012
@@ -552,7 +552,7 @@
}
static StringRef input(StringRef scalar, void *, MyNumber &value) {
- int64_t n;
+ long long n;
if ( getAsSignedInteger(scalar, 0, n) )
return "invalid number";
value = n;
More information about the llvm-commits
mailing list