[llvm-commits] CVS: llvm/tools/llee/ExecveHandler.c OSInterface.h SysUtils.c SysUtils.h

Misha Brukman brukman at cs.uiuc.edu
Wed Aug 4 14:19:59 PDT 2004



Changes in directory llvm/tools/llee:

ExecveHandler.c updated: 1.7 -> 1.8
OSInterface.h updated: 1.2 -> 1.3
SysUtils.c updated: 1.5 -> 1.6
SysUtils.h updated: 1.4 -> 1.5
---
Log message:

* Convert C++ comments to C
* Add UIUC copyright notice headers


---
Diffs of the changes:  (+51 -37)

Index: llvm/tools/llee/ExecveHandler.c
diff -u llvm/tools/llee/ExecveHandler.c:1.7 llvm/tools/llee/ExecveHandler.c:1.8
--- llvm/tools/llee/ExecveHandler.c:1.7	Sat Jan 10 13:12:09 2004
+++ llvm/tools/llee/ExecveHandler.c	Wed Aug  4 16:19:49 2004
@@ -1,9 +1,16 @@
-//===-- ExecveHandler.c - Replaces execve() to run LLVM files -------------===//
-//
-// This file implements a replacement execve() to spawn off LLVM programs to run
-// transparently, without needing to be (JIT-)compiled manually by the user.
-//
-//===----------------------------------------------------------------------===//
+/*===-- ExecveHandler.c - Replaces execve() to run LLVM files -------------===*\
+ *                                                                            
+ *                     The LLVM Compiler Infrastructure                       
+ *
+ * This file was developed by the LLVM research group and is distributed under
+ * the University of Illinois Open Source License. See LICENSE.TXT for details.
+ * 
+ *===----------------------------------------------------------------------===
+ *
+ * This file implements a replacement execve() to spawn off LLVM programs to run
+ * transparently, without needing to be (JIT-)compiled manually by the user.
+ *
+\*===----------------------------------------------------------------------===*/
 
 #include "SysUtils.h"
 #include "Config/unistd.h"


Index: llvm/tools/llee/OSInterface.h
diff -u llvm/tools/llee/OSInterface.h:1.2 llvm/tools/llee/OSInterface.h:1.3
--- llvm/tools/llee/OSInterface.h:1.2	Mon Oct 20 12:47:13 2003
+++ llvm/tools/llee/OSInterface.h	Wed Aug  4 16:19:49 2004
@@ -1,16 +1,16 @@
 /*===- OSInterface.h - Interface to query OS for functionality ---*- C -*--===*\
-// 
-//                     The LLVM Compiler Infrastructure
-//
-// This file was developed by the LLVM research group and is distributed under
-// the University of Illinois Open Source License. See LICENSE.TXT for details.
-// 
-//===----------------------------------------------------------------------===//
-// 
- *                                                                            *
- * This file defines the prototype interface that we will expect operating    *
- * systems to implement if they wish to support offline cachine.              *
- *                                                                            *
+ * 
+ *                     The LLVM Compiler Infrastructure
+ *
+ * This file was developed by the LLVM research group and is distributed under
+ * the University of Illinois Open Source License. See LICENSE.TXT for details.
+ * 
+ *===----------------------------------------------------------------------===
+ * 
+ *                                                                            
+ * This file defines the prototype interface that we will expect operating    
+ * systems to implement if they wish to support offline cachine.              
+ *                                                                            
 \*===----------------------------------------------------------------------===*/
 
 #ifndef OS_INTERFACE_H


Index: llvm/tools/llee/SysUtils.c
diff -u llvm/tools/llee/SysUtils.c:1.5 llvm/tools/llee/SysUtils.c:1.6
--- llvm/tools/llee/SysUtils.c:1.5	Sat Jan 10 13:15:38 2004
+++ llvm/tools/llee/SysUtils.c	Wed Aug  4 16:19:49 2004
@@ -1,9 +1,16 @@
-//===- SystemUtils.h - Utilities to do low-level system stuff --*- C++ -*--===//
-//
-// This file contains functions used to do a variety of low-level, often
-// system-specific, tasks.
-//
-//===----------------------------------------------------------------------===//
+/*===- SystemUtils.h - Utilities to do low-level system stuff -------------===*\
+ *                                                                            
+ *                     The LLVM Compiler Infrastructure                       
+ *
+ * This file was developed by the LLVM research group and is distributed under
+ * the University of Illinois Open Source License. See LICENSE.TXT for details.
+ * 
+ *===----------------------------------------------------------------------===
+ *
+ * This file contains functions used to do a variety of low-level, often
+ * system-specific, tasks.
+ *
+\*===----------------------------------------------------------------------===*/
 
 #include "SysUtils.h"
 #include "Config/dlfcn.h"


Index: llvm/tools/llee/SysUtils.h
diff -u llvm/tools/llee/SysUtils.h:1.4 llvm/tools/llee/SysUtils.h:1.5
--- llvm/tools/llee/SysUtils.h:1.4	Mon Oct 20 12:47:13 2003
+++ llvm/tools/llee/SysUtils.h	Wed Aug  4 16:19:49 2004
@@ -1,16 +1,16 @@
-/*===- SysUtils.h - Utilities to do low-level system stuff -------*- C -*--===*\
-// 
-//                     The LLVM Compiler Infrastructure
-//
-// This file was developed by the LLVM research group and is distributed under
-// the University of Illinois Open Source License. See LICENSE.TXT for details.
-// 
-//===----------------------------------------------------------------------===//
-// 
- *                                                                            *
- * This file contains functions used to do a variety of low-level, often      *
- * system-specific, tasks.                                                    *
- *                                                                            *
+/*===- SysUtils.h - Utilities to do low-level system stuff ----------------===*\
+ *                                                                            
+ *                     The LLVM Compiler Infrastructure                       
+ *
+ * This file was developed by the LLVM research group and is distributed under
+ * the University of Illinois Open Source License. See LICENSE.TXT for details.
+ * 
+ *===----------------------------------------------------------------------===
+ *                                                                            
+ *                                                                            
+ * This file contains functions used to do a variety of low-level, often      
+ * system-specific, tasks.                                                    
+ *                                                                            
 \*===----------------------------------------------------------------------===*/
 
 #ifndef SYSUTILS_H






More information about the llvm-commits mailing list