80 columns.
authorEric Christopher <echristo@apple.com>
Mon, 12 Jul 2010 05:13:35 +0000 (05:13 +0000)
committerEric Christopher <echristo@apple.com>
Mon, 12 Jul 2010 05:13:35 +0000 (05:13 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108126 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm-c/Target.h
include/llvm-c/lto.h

index 2948fc76f1958237ff734572895f715cc9f69620..b1b9f36fb2b9cd8bd9af2b9e104adfc2b58690ed 100644 (file)
@@ -32,7 +32,8 @@ typedef struct LLVMOpaqueTargetData *LLVMTargetDataRef;
 typedef struct LLVMStructLayout *LLVMStructLayoutRef;
 
 /* Declare all of the target-initialization functions that are available. */
-#define LLVM_TARGET(TargetName) void LLVMInitialize##TargetName##TargetInfo(void);
+#define LLVM_TARGET(TargetName) \
+  void LLVMInitialize##TargetName##TargetInfo(void);
 #include "llvm/Config/Targets.def"
 #undef LLVM_TARGET  /* Explicit undef to make SWIG happier */
   
index 7cafcb29f219c84a20c309db9060790dd9279010..93f37605a41b4df03306516ba58fb85441496f02 100644 (file)
@@ -102,7 +102,7 @@ lto_module_is_object_file_in_memory(const void* mem, size_t length);
  */
 extern bool
 lto_module_is_object_file_in_memory_for_target(const void* mem, size_t length, 
-                                               const char* target_triple_prefix);
+                                              const char* target_triple_prefix);
 
 
 /**