[llvm-commits] [llvm] r100290 - /llvm/trunk/lib/MC/MCStreamer.cpp

Chris Lattner sabre at nondot.org
Sat Apr 3 14:48:59 PDT 2010


Author: lattner
Date: Sat Apr  3 16:48:59 2010
New Revision: 100290

URL: http://llvm.org/viewvc/llvm-project?rev=100290&view=rev
Log:
add <cstdlib> header for abort() on linux builders.

Modified:
    llvm/trunk/lib/MC/MCStreamer.cpp

Modified: llvm/trunk/lib/MC/MCStreamer.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/MC/MCStreamer.cpp?rev=100290&r1=100289&r2=100290&view=diff
==============================================================================
--- llvm/trunk/lib/MC/MCStreamer.cpp (original)
+++ llvm/trunk/lib/MC/MCStreamer.cpp Sat Apr  3 16:48:59 2010
@@ -10,6 +10,7 @@
 #include "llvm/MC/MCStreamer.h"
 #include "llvm/MC/MCExpr.h"
 #include "llvm/Support/raw_ostream.h"
+#include <cstdlib>
 using namespace llvm;
 
 MCStreamer::MCStreamer(MCContext &_Context) : Context(_Context), CurSection(0) {





More information about the llvm-commits mailing list