Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 //===- subzero/runtime/szrt.cpp - Subzero runtime source ------------------===// | |
| 2 // | |
| 3 // The Subzero Code Generator | |
| 4 // | |
| 5 // This file is distributed under the University of Illinois Open Source | |
| 6 // License. See LICENSE.TXT for details. | |
| 7 // | |
| 8 //===----------------------------------------------------------------------===// | |
| 9 // | |
| 10 // This file is a C++ wrapper to szrt.c since g++ complains about .c | |
|
jvoung (off chromium)
2014/09/09 21:19:33
For the comment, aren't we using clang++ instead o
Jim Stichnoth
2014/09/09 21:40:45
Ah, you're right. I was thinking of szbuild.py, b
| |
| 11 // files. | |
| 12 // | |
| 13 //===----------------------------------------------------------------------===// | |
| 14 | |
| 15 extern "C" { | |
| 16 #include "szrt.c" | |
| 17 } | |
| OLD | NEW |