done
[oota-llvm.git] / lib / Target / X86 / X86TargetAsmInfo.h
index a5401da602bf34601b39884166aff59e407fd203..cc509d1853734468649f10499d2b5f84a8b932b5 100644 (file)
 #include "llvm/Target/TargetAsmInfo.h"
 
 namespace llvm {
-  
+
   // Forward declaration.
   class X86TargetMachine;
 
   struct X86TargetAsmInfo : public TargetAsmInfo {
     X86TargetAsmInfo(const X86TargetMachine &TM);
+    
+    virtual bool ExpandInlineAsm(CallInst *CI) const;
+  private:
+    bool LowerToBSwap(CallInst *CI) const;
   };
-
-
 } // namespace llvm
 
 #endif