Use cleaner quoting and eliminate blank space
authorMisha Brukman <brukman+llvm@gmail.com>
Fri, 22 Oct 2004 23:35:57 +0000 (23:35 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Fri, 22 Oct 2004 23:35:57 +0000 (23:35 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17174 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/JIT/JIT.cpp

index 311ec4b47db61f5c67d34c18fec2ac929cf3fb49..7596c4379731e79d2cfde04f7099a46c291fdf7c 100644 (file)
@@ -72,7 +72,7 @@ GenericValue JIT::runFunction(Function *F,
   assert(FTy->getNumParams() == ArgValues.size() &&
          "This doesn't support passing arguments through varargs (yet)!");
 
-  // Handle some common cases first.  These cases correspond to common 'main'
+  // Handle some common cases first.  These cases correspond to common `main'
   // prototypes.
   if (RetTy == Type::IntTy || RetTy == Type::UIntTy || RetTy == Type::VoidTy) {
     switch (ArgValues.size()) {
@@ -83,7 +83,7 @@ GenericValue JIT::runFunction(Function *F,
           isa<PointerType>(FTy->getParamType(2))) {
         int (*PF)(int, char **, const char **) =
           (int(*)(int, char **, const char **))FPtr;
-        
+
         // Call the function.
         GenericValue rv;
         rv.IntVal = PF(ArgValues[0].IntVal, (char **)GVTOP(ArgValues[1]),
@@ -96,7 +96,7 @@ GenericValue JIT::runFunction(Function *F,
            FTy->getParamType(0) == Type::UIntTy) &&
           isa<PointerType>(FTy->getParamType(1))) {
         int (*PF)(int, char **) = (int(*)(int, char **))FPtr;
-        
+
         // Call the function.
         GenericValue rv;
         rv.IntVal = PF(ArgValues[0].IntVal, (char **)GVTOP(ArgValues[1]));