Skip to content

Commit eecbc81

Browse files
committed
intrinsics: Add some comments
1 parent 3feaecd commit eecbc81

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/rt/intrinsics/intrinsics.cpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
// Use `clang++ -emit-llvm -S -arch i386 -O3 -I../isaac -I../uthash
2-
// -I../arch/i386 -fno-stack-protector -o intrinsics.ll intrinsics.cpp`
1+
// Rust intrinsics. These are built into each compilation unit and are
2+
// run on the Rust stack. They should not call C methods because that
3+
// will very likely result in running off the end of the stack.
4+
// Build with the script in src/etc/gen-intrinsics
35

46
#include "../rust_internal.h"
57
#include "../rust_scheduler.h"

0 commit comments

Comments
 (0)