aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2006-12-20 20:40:30 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2006-12-20 20:40:30 +0000
commit48c8e3de2ff1a6734a8207eb8422e0ee7ef79077 (patch)
tree75d3b7f06b09b70ac2c17f3d6b56678b24e79476
parent52fc5feb862d9fb5b9e76eda0906d27cb429b918 (diff)
Fixed 80 cols & style violation
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32720 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/X86/X86Subtarget.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/Target/X86/X86Subtarget.cpp b/lib/Target/X86/X86Subtarget.cpp
index 5281dcda7a..4ab8713427 100644
--- a/lib/Target/X86/X86Subtarget.cpp
+++ b/lib/Target/X86/X86Subtarget.cpp
@@ -30,7 +30,8 @@ AsmWriterFlavor("x86-asm-syntax", cl::init(X86Subtarget::unset),
/// symbols are indirect, loading the value at address GV rather then the
/// value of GV itself. This means that the GlobalAddress must be in the base
/// or index register of the address, not the GV offset field.
-bool X86Subtarget::GVRequiresExtraLoad(const GlobalValue* GV, bool isDirectCall) const
+bool X86Subtarget::GVRequiresExtraLoad(const GlobalValue* GV,
+ bool isDirectCall) const
{
if (GenerateExtraLoadsForGVs)
if (isTargetDarwin()) {
@@ -209,7 +210,8 @@ static const char *GetCurrentX86CPU() {
/// SetJITMode - This is called to inform the subtarget info that we are
/// producing code for the JIT.
-void X86Subtarget::SetJITMode() {
+void X86Subtarget::SetJITMode()
+{
// JIT mode doesn't want extra loads for dllimported symbols, it knows exactly
// where everything is.
if (isTargetCygwin())