[llvm-commits] [llvm] r143722 - in /llvm/trunk/include/llvm/Target: TargetCallingConv.h TargetOptions.h

Eli Friedman eli.friedman at gmail.com
Fri Nov 4 11:45:34 PDT 2011


Author: efriedma
Date: Fri Nov  4 13:45:34 2011
New Revision: 143722

URL: http://llvm.org/viewvc/llvm-project?rev=143722&view=rev
Log:
Add missing includes/decls.


Modified:
    llvm/trunk/include/llvm/Target/TargetCallingConv.h
    llvm/trunk/include/llvm/Target/TargetOptions.h

Modified: llvm/trunk/include/llvm/Target/TargetCallingConv.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Target/TargetCallingConv.h?rev=143722&r1=143721&r2=143722&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Target/TargetCallingConv.h (original)
+++ llvm/trunk/include/llvm/Target/TargetCallingConv.h Fri Nov  4 13:45:34 2011
@@ -14,6 +14,11 @@
 #ifndef LLVM_TARGET_TARGETCALLINGCONV_H
 #define LLVM_TARGET_TARGETCALLINGCONV_H
 
+#include "llvm/CodeGen/ValueTypes.h"
+#include "llvm/Support/DataTypes.h"
+#include "llvm/Support/MathExtras.h"
+#include <string>
+
 namespace llvm {
 
 namespace ISD {

Modified: llvm/trunk/include/llvm/Target/TargetOptions.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Target/TargetOptions.h?rev=143722&r1=143721&r2=143722&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Target/TargetOptions.h (original)
+++ llvm/trunk/include/llvm/Target/TargetOptions.h Fri Nov  4 13:45:34 2011
@@ -17,6 +17,7 @@
 
 namespace llvm {
   class MachineFunction;
+  class StringRef;
 
   // Possible float ABI settings. Used with FloatABIType in TargetOptions.h.
   namespace FloatABI {





More information about the llvm-commits mailing list