diff options
| author | Eric Christopher <echristo@apple.com> | 2010-07-12 05:13:35 +0000 |
|---|---|---|
| committer | Eric Christopher <echristo@apple.com> | 2010-07-12 05:13:35 +0000 |
| commit | 32c0a6207bf6c34b5a3b2819176ac265a88a28db (patch) | |
| tree | c9f1b727d54a0aee3706192d10bc51a2f3c7fd1b | |
| parent | fdff8cf0e04b3b169bfb6a48f2342ce0c1931610 (diff) | |
| download | external_llvm-32c0a6207bf6c34b5a3b2819176ac265a88a28db.zip external_llvm-32c0a6207bf6c34b5a3b2819176ac265a88a28db.tar.gz external_llvm-32c0a6207bf6c34b5a3b2819176ac265a88a28db.tar.bz2 | |
80 columns.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108126 91177308-0d34-0410-b5e6-96231b3b80d8
| -rw-r--r-- | include/llvm-c/Target.h | 3 | ||||
| -rw-r--r-- | include/llvm-c/lto.h | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/include/llvm-c/Target.h b/include/llvm-c/Target.h index 2948fc7..b1b9f36 100644 --- a/include/llvm-c/Target.h +++ b/include/llvm-c/Target.h @@ -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 */ diff --git a/include/llvm-c/lto.h b/include/llvm-c/lto.h index 7cafcb2..93f3760 100644 --- a/include/llvm-c/lto.h +++ b/include/llvm-c/lto.h @@ -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); /** |
