Skip to content

Instantly share code, notes, and snippets.

View ithinuel's full-sized avatar
🦀
Oxidizing

Wilfried Chauveau ithinuel

🦀
Oxidizing
View GitHub Profile
diff --git a/lib/Target/AVR/AVRISelLowering.cpp b/lib/Target/AVR/AVRISelLowering.cpp
index fa8b5d4d3d7..1ff97910e4d 100644
--- a/lib/Target/AVR/AVRISelLowering.cpp
+++ b/lib/Target/AVR/AVRISelLowering.cpp
@@ -1307,32 +1307,36 @@ SDValue AVRTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
InVals);
}
-/// Reverse splitted return values to get the "big endian" format required
+/// Reverse splitted return values to "big endian" order
@ithinuel
ithinuel / playground.rs
Created August 2, 2019 23:10 — forked from rust-play/playground.rs
Code shared from the Rust Playground
macro_rules! or_else {
(,$b:tt) => {
stringify!($b)
};
($a:tt, $b:tt) => {
stringify!($a)
};
}
macro_rules! func {